目前我的 webroot 是http://example.com指向/var/www/example.com/
我想将 WP 安装从那里移动到子文件夹(即/var/www/example.com/int/
)并将 webroot 指向该子文件夹,以便网站 URL 保留相同。
这是我的服务器配置,但它不起作用。你能给我一些建议吗?
server {
root /var/www/example.com;
index index.php index.html index.htm index.nginx-debian.html;
server_name example.com;
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; allow all; }
location ~* \.(woff|eot|ttf|svg|mp4|webm|jpg|jpeg|png|gif|ico|css|js|otf)$ {
expires 1d;
log_not_found off;
access_log off;
}
location / {
root /var/www/example.com/int;
}
}