git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3479 f459cee4-fb09-11de-96c3-f9c5f16c3c76
14 lines
No EOL
386 B
ApacheConf
14 lines
No EOL
386 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options +FollowSymlinks
|
|
RewriteEngine On
|
|
|
|
# Explicitly disable rewriting for front controllers
|
|
RewriteRule ^app_dev.php - [L]
|
|
RewriteRule ^app.php - [L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
# Change below before deploying to production
|
|
#RewriteRule ^(.*)$ /app.php [QSA,L]
|
|
RewriteRule ^(.*)$ /app_dev.php [QSA,L]
|
|
</IfModule> |