我必须在nginx服务器上并排运行wordpress和laravel。所需的网址结构是 example.com (以显示wordpress内容)和 example.com/testapp (对于laravel应用程序)。我目前用于nginx的配置正好相反。
server {
listen 80 default_server;
server_name default;
root /home/forge/default/public;
#root /home/forge/apen;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/default-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
它处理从 example.com 开始的所有路线,除了 example.com/testapp 到laravel。 example.com/testapp 正在提供wordpress内容。 Wordpress文件夹保存在laravel的公共文件夹中。
我单独安装了wordpress,并尝试在/ etc / nginx / sites中创建一个单独的服务器名称 - 一个用于 example.com ,另一个用于 example.com/testapp < / strong>即可。在 example.com 显示wordpress内容之后, example.com/testapp 未加载laravel内容。
答案 0 :(得分:0)
将此添加到您的vHost,然后重试!希望它能奏效!
location /testapp/ {
# Do nothing. nginx will serve files as usual.
}
让我知道它是否有效!
它将忽略测试app目录,Wordpress将能够控制具有/ testapp /理论的路径!