resume/web/.htaccess

9 lines
228 B
ApacheConf
Raw Permalink Normal View History

2016-07-17 17:02:58 -07:00
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /path/to/app
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
</IfModule>