Zeus web server에서 www가 없이 입력된 주소를 자동으로 www가 붙게하여 표시해주는 Rewrite
RULE_0_START:
match IN:Host into $ with ^domain.com$
if matched then
match URL into $ with ^/(.*)$
set OUT:Location = http://www.domain.com/$1
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
endif
RULE_0_END:




최근 덧글