如何自动转发/转换/转换(无论正确的术语是什么)URL作为www.example.com或www.example.com/blah/blah输入到example.com或example.com/blah/blah?我基本上想要推送带有www子域的任何内容,以转发到域,包括路径(如果有的话)。
答案 0 :(得分:4)
在你的htaccess文件中使用这个
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]