在网站根目录下新建一个文件,一般默认都有的。
插入以下代码:
RewriteCond %{HTTP:Host} ^tyseoer.com$
RewriteRule (.*) http://www.tyseoer.com$1 [NC,R=301]
把tyseoer.com替换成自己的域名就OK了。
太原SEO优化.htaccess文件插入以上代码后的样子。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP:Host} ^tyseoer.com$
RewriteRule (.*) http://www.tyseoer.com$1 [NC,R=301]
</IfModule>
# END WordPress