xianliflc/Charlotte/master/Charlotte/.htaccess - Htaccess File

xianliflc/Charlotte/master/Charlotte/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On

    # make sure the requested path is not a file or a dir
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    # redirect request to index.php?url=PATHNAME
    RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache