我希望能够使用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]
但我反过来了。有什么想法吗?
答案 0 :(得分:0)
你有一个错字。它应该是R=301
,因为它代表带有301代码的 R edirect,而L
表示要调用 L ast规则。
此外,你确实倒退了。
您需要的是:
RewriteRule user_postdetail/index/([0-9]+)$ /index.php/post_$1 [R=301,L]