配置
'URL_MODEL' => 2,
'URL_HTML_SUFFIX' => 'html|php|xm
l'
http://www.abc.com/abc.html 可访问
http://www.abc.com/abc.xml 可访问
http://www.abc.com/abc.php 404
采用官网的URL重写location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}