您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關nginx中php偽靜態如何設置的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
nginx php偽靜態的設置方法:1、執行“include vhost/*.config”;2、復制“server {listen 80;server_name think6.cn...}”開始的內容進行修改即可。
本文操作環境:linux5.9.8系統、PHP7.1版,Dell G3電腦
php nginx偽靜態配置
location / { if(!-e $request_filename){ rewrite ^/index.php(.*)$ /index.php?s=/$1 last; rewrite ^(.*)$ /index.php?s=/$1 last; break; } }
為了使配置文件清晰明了。
nginx 可以通過引入文件 進行抽離
include vhost/*.config
復制server {} 開始的內容 進行修改即可
server { listen 80; server_name think6.cn; root "";// location / { index index.php index.html error/index.html; error_page 400 /error/400.html; include E:/Project/think6/public/nginx.htaccess; autoindex off; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9006; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } access_log /www/wwwlogs/enl.bepemo.com.log;//接收日志 error_log /www/wwwlogs/enl.bepemo.com.error.log;//錯誤日志 }
感謝各位的閱讀!關于“nginx中php偽靜態如何設置”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。