继续从www.domain.com重定向到domain.com

时间:2014-03-13 08:19:11

标签: php .htaccess virtualhost wordpress

我的网站不断从www.mydomain.com重定向到mydomain.com&我不知道可能是什么原因。这是Wordpress多用户安装,我在.htaccess中没有任何可能导致重定向的内容。

我检查了虚拟主机,它看起来也正确

    ServerAdmin sohail@exleedo.com
    ServerName mydomain.com
    ServerAlias www.mydomain.com
    DocumentRoot /var/www/all.my.sites/public_html

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/all.my.sites/public_html/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>

你能帮我解决这个问题吗,或者告诉我我怎么知道从哪里可以找到它重定向到mydomain.com

3 个答案:

答案 0 :(得分:1)

请使用wordpress admin登录,然后转到设置面板。 “yoursite.com/wp-admin/options-general.php”

现在更改“网站地址(网址)”(在您的网站网址中添加www)。

答案 1 :(得分:0)

试试这个。写在.htaccess -

#Redirect non-www urls to www
RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain\.com [NC]
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]

答案 2 :(得分:0)

试试这个

RewriteEngine On
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]