配置停靠的WordPress Nginx并使用WPML的“不同的域名”需要以下步骤:
server {
listen 80;
server_name example.com;
root /path/to/wordpress;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
在上面的示例配置中,将example.com
替换为您要使用的域名,将/path/to/wordpress
替换为您的WordPress安装路径。
server {
listen 80;
server_name example.com;
return 301 $scheme://example.com/$request_uri;
}
server {
listen 80;
server_name example.fr;
return 301 $scheme://example.fr/$request_uri;
}
在上面的示例配置中,将example.com
和example.fr
替换为您配置的域名。
完成以上步骤后,您的WordPress站点将使用Nginx作为Web服务器,并且可以通过不同的域名访问不同的语言版本。
领取专属 10元无门槛券
手把手带您无忧上云