1

Does anyone have the setttings from the .htaccess file to remove www from my url?

http://example.com

I've tried using some of the settings in the internet but it gives me a redirect loop. I need something that prevents a redirect loop.

this would really help me. thank you

4

1 回答 1

1

您可以将此代码放入您的 htaccess

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

如果您仍然有重定向循环:

  • 您可能有另一个将非 www 重定向到 www 的脚本
  • 旧规则仍在浏览器的缓存中(尝试清理缓存或使用其他浏览器)
于 2014-09-04T14:59:01.093 回答