ホームページ  >  記事  >  バックエンド開発  >  Web ページを開いたときにデフォルトでダウンロードされるのはなぜですか?

Web ページを開いたときにデフォルトでダウンロードされるのはなぜですか?

WBOY
WBOYオリジナル
2016-12-01 00:56:552389ブラウズ

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

Web ページを開いたときにデフォルトでダウンロードされるのはなぜですか?

回复内容:

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

Web ページを開いたときにデフォルトでダウンロードされるのはなぜですか?

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

<code>    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;
            }
        }
    }</code>

不认识php脚本文件呗

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

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。