apache htaccess 中的 301 从 www.example.com 重定向到 http://example.com

apache htaccess 中的 301 从 www.example.com 重定向到 http://example.com

可能重复:
如何在 Zend 框架上通过 htaccess 将 www.example.com 重定向到 example.com

我想重定向

www.example.com to example.com

有人能帮助我吗?如何使用 htaccess 做到这一点。

答案1

这样就行了;

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

相关内容