在項(xiàng)目發(fā)開過程中使用的服務(wù)器基本上都是提前配置好的,而且配置好的服務(wù)器環(huán)境也不能說改就改,隨意的更改環(huán)境會(huì)導(dǎo)致服務(wù)器其他的功能失效,可能會(huì)引發(fā)很嚴(yán)重的錯(cuò)誤,最近的項(xiàng)目開發(fā)中,有一個(gè)項(xiàng)目在測試服務(wù)器開發(fā)和測試完成之后,轉(zhuǎn)移到正式服務(wù)器,在轉(zhuǎn)移完成之后,發(fā)現(xiàn)網(wǎng)站除了首頁可以正常訪問,其他的所有連接均無法打開,研究了一下發(fā)現(xiàn),之前的開發(fā)環(huán)境使用的是Apache服務(wù)器,而正式的服務(wù)器使用的是Nginx服務(wù)器,看似都是服務(wù)器但是其中的小差別還是很大的,所以導(dǎo)致了項(xiàng)目無法正常訪問。
如何解決這個(gè)問題呢,直接修改Nginx 的配置文件vhost.conf,直接上的服務(wù)器 配置(包含 https):
server{
listen 443; server_name demo5.thinkcmf.com; root 你的ThinkCMF5目錄/public; # 該項(xiàng)要修改為你準(zhǔn)備存放相關(guān)網(wǎng)頁的路徑 ssl on; ssl_certificate cert/demo5.thinkcmf.com.pem; ssl_certificate_key cert/demo5.thinkcmf.com.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; location / { index index.php index.html index.htm; #如果請求既不是一個(gè)文件,也不是一個(gè)目錄,則執(zhí)行一下重寫規(guī)則 if (!-e $request_filename) { #地址作為將參數(shù)rewrite到index.php上。 rewrite ^/(.*)$ /index.php?s=$1; #若是子目錄則使用下面這句,將subdir改成目錄名稱即可。 #rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1; } } location /api/ { index index.php index.html index.htm; #如果請求既不是一個(gè)文件,也不是一個(gè)目錄,則執(zhí)行一下重寫規(guī)則 if (!-e $request_filename) { #地址作為將參數(shù)rewrite到index.php上。 #rewrite ^/(.*)$ /index.php?s=$1; #若是子目錄則使用下面這句,將subdir改成目錄名稱即可。 rewrite ^/api/(.*)$ /api/index.php?s=$1; } } location ~* \/upload\/.+\.(html|php)$ { return 404; } location ~* ^\/plugins\/.+\.(html|php)$ { return 404; } location ~* \/themes\/.+\.(html|php)$ { return 404; } #proxy the php scripts to php-fpm location ~ \.php { include fastcgi_params; ##pathinfo支持start #定義變量 $path_info ,用于存放pathinfo信息 set $path_info ""; #定義變量 $real_script_name,用于存放真實(shí)地址 set $real_script_name $fastcgi_script_name; #如果地址與引號(hào)內(nèi)的正則表達(dá)式匹配 if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") { #將文件地址賦值給變量 $real_script_name set $real_script_name $1; #將文件地址后的參數(shù)賦值給變量 $path_info set $path_info $2; } #配置fastcgi的一些參數(shù) fastcgi_param SCRIPT_FILENAME $document_root$real_script_name; fastcgi_param SCRIPT_NAME $real_script_name; fastcgi_param PATH_INFO $path_info; ###pathinfo支持end fastcgi_intercept_errors on; fastcgi_pass 127.0.0.1:9000; } } server { listen 80; server_name demo5.thinkcmf.com; rewrite ^/(.*) https://$server_name/$1 permanent;}
在配置好基本環(huán)境之后,還要解決在低版本的Nginx中不支持PATHINFO環(huán)境變量,通過在Nginx.conf中配置規(guī)則實(shí)現(xiàn)
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; } }
如果你的應(yīng)用安裝在二級(jí)目錄,例如使用TP框架,Nginx的偽靜態(tài)方法設(shè)置如下,其中public是所在的目錄名稱。
location / { if (!-e $request_filename) { rewrite ^/public/(.*)$ /youdomain/index.php?s=/$1 last; } }