4

http://www.codeplex.com/IIRF/Thread/List.aspx

My webhost installed IIRF for me and I am convinced that they did not do it correctly. I've tried numerous examples including one that I know works with apache's mod_rewrite but I can't get anything to work with IIRF. Is there rule or configuration option that you guys have that you know of that will show whether or not the thing is working correctly?

Even something like rewrite all urls to anothersite.com will will help me right now. I hope you guys realize the reason I came for your help. I can figure out how to do the rewrite rules on my own but I don't know if the errors are because of me or the webhost. I have limited options as well since I am on a shared webhost.

jdelator
  • 4,101
  • 6
  • 39
  • 53

2 Answers2

7

The new version of IIRF, v1.2.16 R3, includes a StatusUrl directive that will give you a status page if you do an HTTP GET on it. It looks like this: IIRF Status page

If you get that page, then IIRF is running.

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Cheeso
  • 189,189
  • 101
  • 473
  • 713
  • I think Cheeso is the author of IIRF IIRC so he might say otherwise but don't forget this will only work on the localhost. – Caltor Dec 23 '11 at 14:22
  • Yes I am the author of IIRF. The IIRF Status page works only a request arriving from localhost *by default*. You can enable the iirfstatus page to work from any host. – Cheeso Dec 24 '11 at 22:53
4

This is tested and working with IIRF:

RedirectRule ^.*$ http://www.google.com/ [I,R=301]

It will match any URL and redirect to Google.

Sean Bright
  • 118,630
  • 17
  • 138
  • 146