wangyihuan123/BiosphericallyCorrect/master/php-login/.htaccess - Htaccess File

wangyihuan123/BiosphericallyCorrect/master/php-login/.htaccess

# Necessary to prevent problems when using a controller named "index" and having a root index.php
# more here: http://stackoverflow.com/q/20918746/1114320
Options -MultiViews

# turn rewriting on
RewriteEngine On

# When using the script within a sub-folder, put this path here, like /mysubfolder/
# If your app is in the root of your web folder, then please delete this line or comment it out
#backup# RewriteBase /php-login/
#RewriteBase /BiosphericallyCorrect/wp-content/themes/BC-child/
RewriteBase /BiosphericallyCorrect/php-login/

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache