htaccess 301重定向规则
我想
重定向 http://www.mysite.com /index.php?option=com_content&view=frontpage&Itemid=1
至
你能告诉我 htaccess 的 301 重定向规则吗?
谢谢。
我尝试了以下方法,但没有运气。
RewriteCond %{QUERY_STRING} ^option=com_content&view=frontpage&Itemid=1$
RewriteRule ^/index.php$ http://www.mysite.com [L,R=301]
I want to
redirect http://www.mysite.com/index.php?option=com_content&view=frontpage&Itemid=1
TO
Can you please show me the 301 redirect rule for htaccess?
Thanks.
I tried the following, but no luck.
RewriteCond %{QUERY_STRING} ^option=com_content&view=frontpage&Itemid=1$
RewriteRule ^/index.php$ http://www.mysite.com [L,R=301]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以下配置,
我在我的域上尝试过,效果很好。希望这也适合你......:)
You can try below configuration,
I tried it on my domain and it works fine. Hope this works for you too... :)
根据 www.htaccessredirect.net,执行此操作的代码是:
或者,您可以查看使用apache 的 mod_rewrite 模块。
According to www.htaccessredirect.net, the code to do this would be:
Alternatively, you could look in to using apache's mod_rewrite module.