0

I need to rewrite URLs. The problem is that I am developing in PHP on an ISAPI server. An additional problem is that I am not the owner/manager of the server.

Is there any way to rewrite URLs for PHP on a shared ISAPI server?

Chaim
  • 2,109
  • 4
  • 27
  • 48

1 Answers1

0

Does the host have ISAPI_Rewrite tool installed? If yes, you can use per-site configuration file named .htaccess to rewrite URLs for your site.

TonyCool
  • 1,004
  • 1
  • 6
  • 5
  • I am not exactly sure. I have tried a .htaccess file (that worked on my apache server) and it didn't work at all. How would I check? – Chaim Feb 02 '10 at 15:44
  • Ask your host whether he has ISAPI_Rewrite installed on the server. If he does, try the testing rule from here: http://www.helicontech.com/forum/forum_posts-TID-10648.htm – TonyCool Feb 25 '10 at 11:29