EgidioCaprino/accounting-firm/master/public/.htaccess - Htaccess File

EgidioCaprino/accounting-firm/master/public/.htaccess

RewriteEngine On

# The following rule tells Apache that if the requested filename exists, simply serve it.
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

# All the other requests, will reach the front controller
RewriteRule ^(.*)$ /index.php [NC,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache