thinkphp5伪静态设置

1、apache环境:修改public/.htaccess文件(也就是在index.php后边加个?)


  Options +FollowSymlinks -Multiviews
  RewriteEngine On

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

 

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

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

 

你可能感兴趣的:(thinkphp5,thinkphp5,php,伪静态,thinkphp)