我正在尝试将 nginx 配置为从 2 个不同的位置提供 2 个不同的 php 脚本。配置如下。
- 我有一个 Laravel 安装,它所在的目录应该
/home/hamed/laravel
在其中提供服务。public
- 我在
/home/hamed/www/blog
.
这是我的nginx
配置:
server {
listen 443 ssl;
server_name example.com www.example.com;
#root /home/hamed/laravel/public;
index index.html index.htm index.php;
ssl_certificate /root/hamed/ssl.crt;
ssl_certificate_key /root/hamed/ssl.key;
location /blog {
root /home/hamed/www/blog;
try_files $uri $uri/ /blog/index.php?do=$request_uri;
}
location / {
root /home/hamed/laravel/public;
try_files $uri $uri/ /index.php?$request_uri;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/var/run/php5-fpm.hamed.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
问题是当尝试通过调用example.com/blog
仍然 laravel 安装接管请求来访问 wordpress 部分时。
现在我尝试替换块root
内的指令但无济于事。 location
alias
根据本指南,具有index
指令或try_files
内部location
会触发我怀疑会导致此行为的内部重定向。
有人可以帮我解决这个问题吗?