今天弄了個別人的項目,用的tp5,正好前段時間學tp5了,可是人家竟然用了rewrite,我沒學過啊,放在nginx ,全是404,真尷尬
其實很簡單,在配置文件里面添加一小段代碼就ok了
時間緊張直接把配置文件放出來
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; } }