停止nginx重定向到/ public文件夹

时间:2015-03-09 21:27:44

标签: php nginx debian

我在192.168.33.10托管虚拟机并将我的webroot配置为/home/vagrant/www

在此我放置了index.php。导航到192.168.33.10/index.php会为该文件提供服务,但导航到192.168.33.10始终会重定向到192.168.33.10/public

如何禁用此公开重定向?

编辑 - 包含' / etc / nginx / sites-enabled /默认':

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/vagrant/www;
index index.php index.html index.htm;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

1 个答案:

答案 0 :(得分:0)

好的,感觉很蠢。 Chrome浏览器的浏览器始终自动填充192.168.33.10/public! - 必须清除缓存,一切都很好..不确定如何在Chrome中阻止此行为