Apache环境和IIS环境默认在根目录加了伪静态规则了,不需要操作,只要主机支持伪静态即可。
1
location / {
2
if
(!-e $request_filename){
3
rewrite ^/(.*)$ /index.php?p=$1 last;
4
}
5