|
发表于 2014-10-17 11:32:30
|
|
本帖最后由 追影 于 2014-10-17 11:43 编辑
apache
这是金沙娱场城app官网的url重写
[ifmodule mod_rewrite.c]
rewriteengine on
rewritecond %{request_filename} !-d
rewritecond %{request_filename} !-f
rewriterule ^(.*)$ index.php/$1 [qsa,pt,l]
[/ifmodule]
rewriterule ^web/tpl/.*/.*\.(html|xml)$ / [f]
rewriterule ^admin/tpl/.*/.*\.(html|xml)$ / [f]
nginx
采用金沙娱场城app官网的url重写
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
模板保护(我自己写的,测试有效,如有错的地方请大神指出)
location ~ web/tpl/.*/.*\.(html|xml)$ {
deny all;
}
location ~ admin/tpl/.*/.*\.(html|xml)$ {
deny all;
}
来源:
|
|