tigron/skeleton/master/webroot/.htaccess - Htaccess File

tigron/skeleton/master/webroot/.htaccess

# Enable following symlinks
Options +FollowSymLinks

RewriteEngine On

# If we have documentation present, serve it
RewriteCond %{DOCUMENT_ROOT}/documentation/ -d
RewriteRule ^documentation/.*$ - [L]

# Rewrite all requests to the handler.php file
RewriteCond %{REQUEST_URI} !^/handler.php
RewriteRule ^(.*)?$ /handler.php [L,NS]

# Force everything to be handled as UTF-8
AddDefaultcharset UTF-8

On Github License

Files

Download PDF of Htaccess file
DOCUMENT_ROOT, REQUEST_URI

Comments

Apache