我在Digital Ocean&通过Serverpilot安装Wordpress。当前主页URL是www.xyz.com& xyz.com也在重定向。
但是当我打开xyz.com/test-post时,它不会在www.xyz.com/test-post上重新开始。我该如何重定向?
答案 0 :(得分:0)
下的(URL)字段
然后将其写入.htaccess
文件
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
希望这对你有所帮助。