Linux 使用非 80 端口配置失效?

nginx 配置使用81端口访问,不能正确定位 index.html ,需要手动输入?

server {
        listen       81;
        root /www/web/xxxx/public_html;
        server_name xxxx.com;
        index  index.html index.php index.htm;
        error_page  400 /errpage/400.html;
        error_page  403 /errpage/403.html;
        error_page  404 /errpage/404.html;
        error_page  503 /errpage/503.html;
        location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
        }
        location ~ /\.ht {
                deny  all;
        }
        location / {
                try_files $uri @apache;
        }
        location @apache {
                 proxy_pass http://127.0.0.1:88;
                 include naproxy.conf;
        }
}

clipboard.png

为何如此奇怪?经过测试这个配置是成功的,输入完整地址时

clipboard.png

目录文件如下

clipboard.png

无法解析 php 文件。。。

clipboard.png

clipboard.png

阅读 3.1k
2 个回答

添加这个默认请求定位

location / {

        
        #定义首页索引文件的名称
        index index.php index.html index.htm;   

    }

手机评论,格式见谅

问题解决了,Apache 配置有问题。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题