thinkphp5僞靜態設置

1、apache環境:修改public/.htaccess文件(也就是在index.php後邊加個?)

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

 

2、Nginx環境:在nginx.conf文件中添加

location / { //...省略部分代碼
	if(!-e $request_filename){
		rewrite ^(.*)$ /index.php?s=/$1 last;
		break;
	}
	
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章