mkrause/roy/master/.htaccess - Htaccess File

mkrause/roy/master/.htaccess

# This is an example .htaccess file.

# Rewrite all requests to go through public/
<IfModule mod_rewrite.c>
RewriteEngine on

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

RewriteRule ^$ public/ [passthrough,last]
RewriteRule .* public/$0 [passthrough,last]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache