Htaccess 301重定向

发布于 2024-10-21 03:09:13 字数 277 浏览 1 评论 0原文

时,任何人都可以帮助我解决 htaccess 301 重定向吗

当我在浏览器地址栏中使用以下 URL www.sb.my-sitename.co.uk 并且必须将其重定向到

https://sb.my-sitename.co.uk

此处 我需要删除 www 部分,并在 URL 前面包含 https://,因为 sb. 是子域,

谢谢。

Can any one please help me on the htaccess 301 redirection

when i use the following URL www.sb.my-sitename.co.uk in the address bar of the browser and which has to be redirected to

https://sb.my-sitename.co.uk

Here i need to remove the www part and include https:// in front of the URL since sb. is the sub-domain

Thanks.

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

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

发布评论

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

评论(1

堇年纸鸢 2024-10-28 03:09:13
Redirect 301 / https://sb.my-sitename.co.uk

将其放入 www.sb.my-sitename.co.uk 站点文件夹根目录的 .htaccess 中。

要删除 www

RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^example\.com
RewriteRule (.*) http://example.com/$1 [R=301,L]

example.com 替换为您的网址

Redirect 301 / https://sb.my-sitename.co.uk

Put that in a .htaccess of the root of your www.sb.my-sitename.co.uk site folder.

To remove the www:

RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^example\.com
RewriteRule (.*) http://example.com/$1 [R=301,L]

Replace example.com with your URL

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