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

已有 3 条评论

  1. 若能补充常见问题解答,会更具实用性。

  2. 论点鲜明,论据链环环相扣,论证有力。

  3. 字里行间流露出真挚的情感,让人感同身受,共鸣不已。

添加新评论