Silex路由.htaccess webroot

时间:2013-03-17 13:11:19

标签: php .htaccess routing silex

我正在使用Silex“微框架”进行应用程序的路由。 我目前仍然坚持如何使用.htaccess重写网址。

标准Silex网址:localhost/myapp/web/index.php/hello/name

我希望它看起来像:localhost/myapp/hello/name

使用以下.htaccess代码,我可以省略/index.php/部分。但我仍然需要使用/web/部分。

RewriteEngine On
RewriteCond %{THE_REQUEST} /myapp/web/index.php/
RewriteRule ^/myapp/web/index.php/(.*) /myapp/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !/myapp/web/index.php/
RewriteRule ^(.*)$ /myapp/web/index.php/$1 [L]

有什么建议吗? 谢谢!

4 个答案:

答案 0 :(得分:2)

我现在面临同样的问题,解决方案是将.htaccess内容更改为:

FallbackResource /index.php

所以在你的情况下,它将是

FallbackResource /web/index.php

这对我有用,我希望有人会发现它很有用。

答案 1 :(得分:1)

来自:http://silex.sensiolabs.org/doc/web_servers.html

<IfModule mod_rewrite.c>
    Options -MultiViews    
    RewriteEngine On
    RewriteBase /web
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [QSA,L]
</IfModule>

正确的做法是将DocumentRoot设置为/path/to/your/app/web

答案 2 :(得分:0)

这样的事情可以解决问题:

RewriteEngine On
RewriteBase /

RewriteRule ^myapp/web/index.php/  /myapp/                 [R=301,L]
RewriteRule ^myapp/                /myapp/web/index.php/   [L]

答案 3 :(得分:0)

我遇到了类似的问题,用以下内容解决了

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