伪静态支持


Apache

在入口文件目录新建.htaccess内容如下

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php?$1 [NC,L]
</IfModule>

nginx

nginx 配置的rewrite配置如下:

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

type的值为2,4或5的时候, 把上面两条规则中的 index.php? 替换为 index.php/ 即可.