apache 伪静态

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

nginx 伪静态

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

标签: php, nginx, thinkPHP, apache

添加新评论