Site menu:

 

05月 2007
« Apr   Jun »
 123456
78910111213
14151617181920
21222324252627
28293031  

分类

最新日志

最新评论

Site search

标签

存档页

Links:

Archive for 05月 14th, 2007

wordpress Zeus Web Server UrlRewrite 规则

RULE_0_START:
# get the document root
map path into SCRATCH:DOCROOT from /
# initialize our variables
set SCRATCH:ORIG_URL = %{URL}
set SCRATCH:REQUEST_URI = %{URL}
# see if theres any queries in our URL
match URL into $ with ^(.*)\?(.*)$
if matched then
set SCRATCH:REQUEST_URI = $1
set SCRATCH:QUERY_STRING = $2
endif
RULE_0_END:
RULE_1_START:
# prepare to search for file, rewrite if its not found
set SCRATCH:REQUEST_FILENAME = %{SCRATCH:DOCROOT}
set SCRATCH:REQUEST_FILENAME . [...]