我正在使用 Apache2,但对它还很陌生。
我遇到的问题是我的网站导致了无限循环,而且我也想从我的域和子域中删除 WWW 部分。
这是我的端口 80 的配置文件:
<VirtualHost *:80>
ServerName foo.example.com
ServerAlias www.foo.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/foo/public
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =foo.example.ga
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI}
</VirtualHost>
这是我的端口 443 的配置文件:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/foo/public
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ServerName foo.example.com
ServerAlias www.foo.example.com
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/foo.example.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/foo.example.com/privkey.pem
RewriteEngine on
RewriteCond %{SERVER_NAME} =www.foo.example.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
</IfModule>
现在我知道它编码不正确,但如果有人能给我指出正确的方向,那就太好了。谢谢!
答案1
我犯了一个新手错误,没有检查指定目录中的 .htaccess。我删除了内容(我喜欢将网络信息放在一个地方),并将重写规则放在我的配置文件中。