TP5在Nginx环境下去掉url中的index.php

第一步:修改.htaccess文件如下


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

第二步:修改nginx.conf 的 location / { } 部分

location / {
    if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php?s=/$1 last;
    }
}

 

你可能感兴趣的:(ThinkPHP,Nginx)