http 版本由 nginx 处理,https 由 apache 处理。
现在我的问题是,例如,当您键入https://sitename.com/contact/时,它可以正常工作,但是当您键入http://sitename.com/contact/时,它会重定向到主页https://www.sitename。 com
以上是我的 nginx 配置。
server {
root /var/www/html/;
index index.php index.html index.htm;
server_name sitename.com www.sitename.com;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
}
location ~ /\.ht {
deny all;
}
listen 80; # managed by Certbot
}
我在该配置中根本看不到任何类型的重定向或重写。
像下面这样的东西应该可以工作:
我从这个Digital Ocean 页面借了这个。
nginx.conf 文件缺少这个