301 重定向适用于 www.example.com,但不适用于

发布于 2024-08-09 02:04:10 字数 399 浏览 2 评论 0原文

则代码在链接中与 www 一起工作,而在没有 www 的情况下不起作用

RewriteBase /
RewriteRule ^api$ http://example.com/topic/api [R=301,L]

我遇到了 301 重定向的一个奇怪问题,如果我输入 http://www.example.com/api 它可以工作,但是如果我这样做 http:// /example.com/api 它不起作用

Adv 谢谢 普拉桑特

I am getting a strange problem with 301 redirect it the code is working for with www in the link and not working for with out www

RewriteBase /
RewriteRule ^api$ http://example.com/topic/api [R=301,L]

if i type http://www.example.com/api it works but if i do http://example.com/api it doesnt work

Adv thanks
prasanth

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

帝王念 2024-08-16 02:04:10

检查您的虚拟主机配置应如下所示。

<VirtualHost *:80>
  ...
  ServerName www.example.com
  ServerAlias example.com
  ...
</VirtualHost>

如果找不到该页面,则 example.com 和 www.example.com 可能指向不同的目录,否则,example.com 可能尚未链接到任何位置。

Check your Virtual Host configuration should be like below

<VirtualHost *:80>
  ...
  ServerName www.example.com
  ServerAlias example.com
  ...
</VirtualHost>

If the page is not found, it is possible that the example.com and www.example.com point to difference directory, otherwise, example.com may not linked to any place yet.

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