2 つの異なる場所から 2 つの異なる php スクリプトを提供するように nginx を構成しようとしています。構成は次のとおりです。
- ディレクトリを提供する必要が
/home/hamed/laravel
あるLaravelインストールがあります。public
- にWordpressをインストールしてい
/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インストールを 呼び出してワードプレスセクションにアクセスしようとすると、リクエストが引き継がれることです。
今、ブロックroot
内のディレクティブを無駄に 置き換えようとしました。location
alias
このガイドによると、index
ディレクティブまたはtry_files
内部location
を使用すると、この動作の原因と思われる内部リダイレクトがトリガーされます。
誰かがこれを理解するのを手伝ってくれませんか?