htacces 重定向问题
我有一个似乎无法解决的问题。我需要使用我的 htacces 文件重定向(更改/使 seo 友好),以下网址
来自:
http://www.domain.com/cat/subcat/?id=text
至:
http://www.domain.com/cat/subcat/text
您能否帮忙解决这个问题,因为注释似乎有效。
I have a problem i can`t seem to solve. I need to redirect (change/make seo friendly) ,using my htacces file, the following url
from:
http://www.domain.com/cat/subcat/?id=text
to:
http://www.domain.com/cat/subcat/text
Could you please help met with this as noting seems to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mod_rewrite
与RewriteRule
第一个参数中的查询字符串不匹配。您将需要一个RewriteCond
。此外,在.htaccess
中使用重写规则时,在RewriteRule
中匹配时,前导/
不会出现。%1
是在RewriteCond
中匹配的 id希望有帮助。
mod_rewrite
does not match the querystring in the first parameter of aRewriteRule
. You will need aRewriteCond
instead. Also, when using rewrite rules in.htaccess
the leading/
is not present when matching in theRewriteRule
.The
%1
is the id that was matched in theRewriteCond
Hope that helps.