Есть два скрипта. Один должен открываться на
xxx.ru, другой на
xxx/hite. Мой конфиг корректно отображает
xxx.ru, но
xxx.ru/hite выдает с ошибкой.
var/www/html/vfm/hite/index.php" is not found
Конфиг
server {
listen 80;
server_name xxx.ru;
root /var/www/html/vfm;
index index.php;
location ~ \.php$ {
include /etc/nginx/fastcgi.conf;
fastcgi_pass fastcgi_backend_71;
}
}
server {
listen 80;
server_name xxx.ru/hite;
root /var/www/html/hite;
index index.php;
location ~ \.php$ {
include /etc/nginx/fastcgi.conf;
fastcgi_pass fastcgi_backend_71;
}
}