今天弄了個別人的項目,用的tp5,正好前段時間學tp5了,但是人家居然用了rewrite,我沒學過啊,放在nginx ,全是404,真尷尬php
其實很簡單,在配置文件裏面添加一小段代碼就ok了html
時間緊張直接把配置文件放出來nginx
server { listen 80; server_name test.wqzsub.com; location / { root /var/www/test; index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; }
/*主要加了這一塊*/
} location ~ \.php$ { root /var/www/test; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }