sonata从url中删除/index.php

时间:2016-11-17 10:43:22

标签: .htaccess symfony redirect sonata

我正在研究一个Symfony 2.8 / Sonata项目,我发现所有网址都是重复的,一个是" /index.php"而另一个有它。 所以这个网址:

  

http://mydomaine.com/index.php/test/test.html

将被重定向到:

  

http://mydomaine.com/test/test.html

我尝试使用.htaccess删除它,但它没有工作:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    RewriteRule ^(.*)$ app_dev.php [QSA,L]
</IfModule>

你有什么想法吗? 谢谢

0 个答案:

没有答案