Amiejah/small_cms/master/.htaccess - Htaccess File

Amiejah/small_cms/master/.htaccess

<IfModule mod_rewrite.c>

    Options +FollowSymLinks
    RewriteEngine on

    RewriteCond %{HTTP_HOST} ^casino:8888$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^casino:8888$
    RewriteCond %{REQUEST_URI} !public_html/
    RewriteRule (.*) /public_html/$1 [L]

    # Send request via index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ public_html/index.php/$1 [L]

</IfModule>

php_flag display_errors 1

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache