Technically, it\'s possible. 这是可行的。
您可以在子目录上创建一个PHP站点,如example.com/shop
.
但是,更好的做法是将PHP站点托管在子域上,如shop.example.com
. 它有助于更好的维护,并为组织站点提供更好的结构。
在Nginx
服务器,您的配置应类似于:
server {
listen 80;
listen [::]:80;
server_name shop.example.com;
root /var/www/html/shop;
index index.php index.html index.htm;
location ~ \\.php$ {
include fastcgi.conf;
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.1-fpm.sock;
}
}
如果你仍然坚持
shop
在
example.com/shop
, 无需额外配置。您预安装的WordPress安装程序已完成。它将无缝工作。但是,请记住
shop
文件必须保存在名为
shop
在您的主目录中。