只需将此代码放入wp-config.php
文件
define( \'WP_HOME\', \'your_url\' );
define( \'WP_SITEURL\', \'your_url\' );
在中。htaccess文件:
强制www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]
强制非www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\\.example\\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
Note: 您只需在中注释掉这两行即可。htaccess文件,使用
#
只是放在前面
RewriteEngine on
#RewriteCond %{HTTP_HOST} ^www\\.example\\.com [NC]
#RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]