RewriteHeader - Helicon ISAPI Redirect Old URL -
there instructions in helicon documentation on using rewriteheader http://www.isapirewrite.com/docs/#rewriteheader , 1 example looking for:
and rule add old-url header request, providing request-url header value:
rewritecond url (.*) rewriteheader old-url: ^$ $1
i've added these 2 lines first 2 lines of httpd.ini, stopped , started website, recycled application pool (neither of should required)... can't see old-url header anywhere. have been going various urls, ones or without redirection rules , haven't been able find header. have been using chrome's network tab review pages coming server (with status of 301 , 200 respectively)
all redirects in file working fine.
update: there multiple ways redirects can happen in our current project , want add http headers can see method redirect fired from.
try fix rule this:
rewritecond url (.*) rewriteheader old-url: .* $1
or consider using isapi_rewrite 3 more straightforward , has logging easier debug problem.
Comments
Post a Comment