带双斜杠的 www 重定向

发布于 2025-01-02 05:09:31 字数 308 浏览 0 评论 0原文

当我输入我的网站 http://domain.com 时,它会重定向到 http://www.domain.com//(末尾有双斜杠)。

奇怪的是,我没有在 .htaccess 文件中设置任何重定向。实际上该文件是空的。我尝试在那里添加一些重写规则,但同样的问题再次出现。

我不明白在哪里设置了非 www 到 www 的重定向?你有什么想法吗?

谢谢。

When I enter my website http://domain.com it redirects to http://www.domain.com// (double slash in the end).

What is strange, I haven't set any redirects in .htaccess file. Actually that file is empty. I've tried to add some rewrite rules there, but the same problem appeared again.

I can't understand where have been set that non-www to www redirect? Do you have any ideas.

Thanks.

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

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

发布评论

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

评论(1

偷得浮生 2025-01-09 05:09:31

尝试使用此代码从网址中删除双斜杠。

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} //
RewriteRule ^ $0 [R=302]

一旦工作正常,将 302 更改为 301。

Try using this code to remove double slashes from the urls.

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} //
RewriteRule ^ $0 [R=302]

Change the 302 to 301 once you get it working.

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