php - 为什么打开网页默认是下载了?
PHP中文网
PHP中文网 2017-04-10 17:41:57
0
3
805

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

PHP中文网
PHP中文网

认证0级讲师

全部回覆(3)
洪涛

你把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脚本文件呗

洪涛

你这个nginx配置文件,没有指定php去解析php文件吧

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板