我的服务器上有该文件 但是登录跳转之后报错404nginx是怎么回事?
李峰
李峰 2018-04-14 09:56:27
[PHP讨论组]

nginxconf配置如下

worker_processes  2;


events {

worker_connections 1024;

multi_accept on;

}

http {

    include  mime.types;

default_type  application/octet-stream;

client_header_buffer_size 32k;

large_client_header_buffers 4 32k;

client_max_body_size 2048m;

server_names_hash_bucket_size 1024;

sendfile   on;

tcp_nopush on;


keepalive_timeout 60;


tcp_nodelay on;


fastcgi_connect_timeout 3600;

fastcgi_send_timeout 3600;

fastcgi_read_timeout 3600;

fastcgi_buffer_size 64k;

fastcgi_buffers 4 64k;

fastcgi_busy_buffers_size 128k;

fastcgi_temp_file_write_size 256k;

fastcgi_intercept_errors on;

gzip on;

gzip_min_length  1k;

gzip_buffers     4 16k;

gzip_http_version 1.1;

gzip_comp_level 2;

gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml;

gzip_vary on;

gzip_proxied   expired no-cache no-store private auth;

gzip_disable   "MSIE [1-6]\.";

server_tokens off;

access_log off;


    server {

        listen       80;

        server_name  localhost;


        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {

            root   html;

            index  index.html index.htm;

        }

    }

    include vhost/*.conf; 

    #加载vhost目录下的虚拟主机配置文件

}


李峰
李峰

全部回复(2)
PHP中文网

路径错误 伪静态错误 就这两个可能性

  • 回复 大神能帮我看看伪静态该怎么做怎么配置嘛
    李峰 作者 2018-04-15 16:20:53
李峰

各位大神帮忙看一下

  • 回复 需要访问的是.html文件
    李峰 作者 2018-04-14 09:58:12
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号