我是.htaccess的新手,我有一个问题。我想将www重定向到非www页面,它可以工作,但是问题是URL重写不正确。 它重定向到 test-host.com//index.php?p=about ,但希望重定向到 test-host.com/about
这是.htaccess代码:
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule www\.test-host\.com/(.*)$ https://%1/$1 [L,R=301]
有人可以帮助我吗?