我有一个在Nginx上运行的多站点安装。
在我的站点配置文件中,我已将服务器块设置为:
server{
listen 80 default_server;
server_name example.com *.example.com;
server_name_in_redirect off;
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
root /var/www/example.com/htdocs;
index index.php;
if (!-e $request_filename) {
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
rewrite ^(/[^/]+)?(/wp-.*) $2 last;
rewrite ^(/[^/]+)?(/.*\\.php) $2 last;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
}
现在,每当我进入www.example。在浏览器中,我被重定向到示例。com。
然而,我想举个例子。com重定向到www.example。com。
我还计划在www.example中使用HTTPS。com公司
要做到这一点,我还需要向配置文件中添加什么?