emlog4.0伪静态规则for nginx/iis

[ 2011-8-22 16:36 Monday | 作者: 麦子 | ]

nginx:

location / {
        index index.php index.html;
        if (!-e $request_filename)
        {
                rewrite ^/(.+)$ /index.php last;
        }
}

IIS6:

[ISAPI_Rewrite]
# 3600 = 1 h...

阅读全文>>

标签: Nginx iis emlog