我正在尝试设置从https://www.dolgins.com到https://dolgins.com的apache2重定向,但无法使其正常工作。我跟着this guide并正确指出了A记录。 这是我的apache config 的屏幕截图 这是我的.htacess文件,位于DocumentRoot文件夹中:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
有什么想法吗?此外,我想要更改URL。我需要做什么?
谢谢 约瑟夫