htaccess 301重定向规则

发布于 2024-10-31 01:11:36 字数 549 浏览 1 评论 0原文

我想

重定向 http://www.mysite.com /index.php?option=com_content&view=frontpage&Itemid=1

http://www.mysite .com/

你能告诉我 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

http://www.mysite.com/

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吝吻 2024-11-07 01:11:36

您可以尝试以下配置,

RewriteCond %{QUERY_STRING} option=com_content&view=frontpage&Itemid=1
RewriteRule index\.php$ /? [L,R=301]

我在我的域上尝试过,效果很好。希望这也适合你......:)

You can try below configuration,

RewriteCond %{QUERY_STRING} option=com_content&view=frontpage&Itemid=1
RewriteRule index\.php$ /? [L,R=301]

I tried it on my domain and it works fine. Hope this works for you too... :)

眼波传意 2024-11-07 01:11:36

根据 www.htaccessredirect.net,执行此操作的代码是:

Redirect 301 /index.php?option=com_content&view=frontpage&Itemid=1 /

或者,您可以查看使用apache 的 mod_rewrite 模块

According to www.htaccessredirect.net, the code to do this would be:

Redirect 301 /index.php?option=com_content&view=frontpage&Itemid=1 /

Alternatively, you could look in to using apache's mod_rewrite module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文