我希望能够使用htaccess更改根目录

时间:2013-01-24 10:07:10

标签: .htaccess mod-rewrite

我希望能够使用htaccess更改根目录。

我想要这个:

index.php/user/user_postdetail/index/14

成为这个:

index.php/post_14.html

我尝试使用

RewriteRule post_([0-9]+).html$ /index.php/user/user_postdetail/index/$1 [L=301,R]

但我反过来了。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

你有一个错字。它应该是R=301,因为它代表带有301代码的 R edirect,而L表示要调用 L ast规则。

此外,你确实倒退了。

您需要的是:

RewriteRule user_postdetail/index/([0-9]+)$ /index.php/post_$1 [R=301,L]
相关问题