为什么打开网页默认是下载了?
巴扎黑
巴扎黑 2016-11-10 15:52:13
[PHP讨论组]

我配置了nginx软件,不知道哪里错了。打开网页直接下载了访问的php页面。这是我的server配置

2517766707-5822d891739f7_articlex.png

巴扎黑
巴扎黑

全部回复(1)
女神的闺蜜爱上我

你把fastcgi_pass加上试试看。参考我的配置如下

server {        #sitename    dev.wei.ui
        listen       80;
        server_name  dev.wei.ui;
        root         /server/htdocs/weui-master;
        error_log    /server/web/logs/nginx/dev.wei.ui-error.log;
        access_log   /server/web/logs/nginx/dev.wei.ui-access.log;
        autoindex    on;        index        index.php index.html index.htm;
        location ~* ^.+\.(bak|inc|lib|sh|tpl|lbi|dwt|sql)$ {
             deny  all;
        }
        location ~ .*\.php?$ {
            fastcgi_pass   127.0.0.1:9002;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
        location / {            if (!-e $request_filename) {
                rewrite  ^(.*)$  /index.php?s=$1  last;                break;
            }
        }
    }


热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

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