這篇文章給大家分享的是有關(guān)網(wǎng)站Nginx配置時(shí)無(wú)法解析php文件怎么辦的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
如何解決:
打開/etc/nginx/nginx.conf.default
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;include fastcgi_params; }
放到/etc/nginx/conf.d/_.conf,文件中,保存后如下代碼所示
server { # Generated by VPSMatelisten 80; server_name _ www.paoyx.com; index index.html index.htm index.php; location / { root /var/www; }# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include fastcgi_params; } location = /404.html { alias /usr/share/nginx/html; } location = /50x.html { alias /usr/share/nginx/html; } }
感謝各位的閱讀!關(guān)于“網(wǎng)站Nginx配置時(shí)無(wú)法解析php文件怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
新聞標(biāo)題:網(wǎng)站Nginx配置時(shí)無(wú)法解析php文件怎么辦-創(chuàng)新互聯(lián)
標(biāo)題路徑:http://www.rwnh.cn/article16/pdgdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、小程序開發(fā)、微信公眾號(hào)、搜索引擎優(yōu)化、軟件開發(fā)、營(yíng)銷型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容