由于我在Symfony2
上迁移了我的项目,因此我还避免使用之前用于生成的网址的.html
扩展名。
因此,在查看了一些示例后,我正试图在/etc/apache2/sites-available/mysite
中执行此操作:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)\.html$ $1 [NC,L]
#this is the standard rewrite rule to redirect every request to /web/app.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
我尝试了很多组合,但似乎没有人工作。任何帮助?感谢