1

我有一个类似的网址www.foo.com/start/rewrite.php/home/say/index

如何使用 UrlRewriteFilter 从此 URL 中删除 rewrite.php,例如

www.foo.com/start/home/say/index

我认为 mod_rewrite 可以使用

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^/start/rewrite.php/?(.*) /$1 [R=301,L] 

谁能帮忙?

4

1 回答 1

0

这可以工作:

<rule>
    <from>^(.*)/(rewrite.php)/(.*)$</from>
    <to>$1/$3</to>
</rule>
于 2012-08-17T06:25:23.493 回答