0

我的应用程序需要一个入口点——index.php。以前,我曾经有这样的代码行:

RewriteRule ^(.*)$ /index.php [L]

现在,我需要强制使用斜杠。我发现,我可以使用这样的行:

RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]

但我想知道,我怎样才能让它同时工作。

4

1 回答 1

0

尝试类似的东西

RewriteRule ^(.*)$ /index.php/$1 [L]

或者

RewriteRule ^(.*)$ http://%{HTTP_HOST}/index.php/$1/ [L]
于 2011-09-01T11:35:54.613 回答