0
これは私の既存のプロジェクトのnginx config
ファイルです。sms.dev/index.php
にアクセスできます。 /var/www/html/laravel
フォルダーに新しいlaravelプロジェクトを展開し、このドメインをsms.dev/laravel
のように使用して、新しいlaravelプロジェクトにアクセスしたいとします。 これを行う方法は?nginxエイリアスを持つ既存のPHPプロジェクトでlaravelプロジェクトを設定するには?
server{
listen 80;
server_name sms.dev;
index index.php index.html index.htm;
root /var/www/html/sms;
location /laravel/ {
# how to config it ?
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
if (!-e $request_filename) {
return 404;
}
}
参照[この答え]内
try_files $uri $uri/ /index.php?$query_string;
を追加してみてください(https://stackoverflow.com/questions/45287201/wordpress-laravel-and-nginx/45297857#45297857) 。 –ブラウザは私がアクセスするものを何でも404返します。 – macc