我的域名最初有一个 www ( https://www.my-domain.com ),我最近将其更改为重定向到非 www。
现在,当我在浏览器上访问时my-domain.com,它会转到我的本地主机 XAMPP 仪表板 ( https://localhost/dashboard/)。当我关闭 xampp 时,我在 Firefox 上收到“无法连接”。
我已经在我的手机和 Mac 上尝试过该网站,它工作正常并指向服务器。我还在我的电脑上重新安装了 xampp,但仍然得到相同的结果。
不确定这是否是问题所在,但我当前的 .htaccess 是
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
</IfModule>
我的 ubuntu 服务器上的虚拟主机是
<IfModule mod_ssl.c>
<VirtualHost *:433>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/frontend/www
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ServerName my-domain.com
Include /etc/letsencrypt/options-ssl-apache.conf
ServerAlias www.my-domain.com
SSLCertificateFile /etc/letsencrypt/live/my-domain.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/my-domain.com/privkey.pem
</VirtualHost>
<Directory /var/www/html/frontend/www>
Options Indexes FollowSymLinks MultiViews
AllowOvereride All
Order allow,deny
allow from all
Require all granted
</Directory>
</IfModule>
知道发生了什么事吗?
我的服务器在 AWS 上运行 ubuntu 18。
HUWWW