我想从我的域中删除www。通常情况下工作得很好,但我有一个新的主机,我不知道它是DNS设置还是其他什么,或者我的htaccess中是否有某种错误。
所以这是我的htaccess文件内容
# Die HTTP-Authentifizierung aktivieren
#AuthType Basic
#AuthName "example"
#AuthUserFile /path/to/.htpasswd
#require valid-user
RewriteEngine On
RewriteBase /
# Rewrite www.domain.com -> domain.com -- used with SEO Strict URLs plugin
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^example\.com [NC]
RewriteRule (.*) http://example.com/$1 [R=301,L]
# The Friendly URLs part
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]