| Author |
Topic Search Topic Options
|
iSec
Senior Member
Joined: 13 February 2005
Status: Offline
Points: 1140
|
Post Options
Thanks(0)
Quote Reply
Topic: ISAPI Rewrite Posted: 27 September 2006 at 8:38am |
Anyone worked on ISAPI Rewrite before? I purchased a scipt that requires it for URL rewriting and I don't know how to get it to work on my windows 2003 server. I placed the httpd.ini in the site root directory as well as on the upper www\ directory and still can't get it to work.
Edited by Info_Tech - 27 September 2006 at 8:38am
|
|
"When it gets dark enough, you can see the stars"
-Charles A. Beard
|
 |
iSec
Senior Member
Joined: 13 February 2005
Status: Offline
Points: 1140
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 September 2006 at 8:41am |
By the way, the ISAPI Rewrite website uses webwiz forum v 7 for their cx support
|
|
"When it gets dark enough, you can see the stars"
-Charles A. Beard
|
 |
MadDog
Mod Builder Group
Joined: 01 January 2002
Status: Offline
Points: 3008
|
Post Options
Thanks(0)
Quote Reply
Posted: 27 September 2006 at 5:45pm |
|
You need to install it... it will setup IIS and place the httpp.ini in the correct place.
|
|
|
 |
iSec
Senior Member
Joined: 13 February 2005
Status: Offline
Points: 1140
|
Post Options
Thanks(0)
Quote Reply
Posted: 28 September 2006 at 12:10am |
|
I did, but it won't work. I installed the software on the server and it automatically associated itself with IIS. I restarted the server just in case... I re-installed the script I have and created a new database for it and still samething.
|
|
"When it gets dark enough, you can see the stars"
-Charles A. Beard
|
 |
MadDog
Mod Builder Group
Joined: 01 January 2002
Status: Offline
Points: 3008
|
Post Options
Thanks(0)
Quote Reply
Posted: 28 September 2006 at 12:40am |
|
Make sure you went into IIS and enabled it. I believe tt adds an extra tab to the web properties.
|
|
|
 |
iSec
Senior Member
Joined: 13 February 2005
Status: Offline
Points: 1140
|
Post Options
Thanks(0)
Quote Reply
Posted: 28 September 2006 at 7:27am |
Ok it worked. I just had to place this code in the httpd.ini file:
#My articles code starts here
RewriteRule /articles/categories(.*) /articles/categories.php?$1 [I,L]
RewriteRule /articles/pages(.*) /articles/pages.php?$1 [I,L]
RewriteRule /articles/blogrss(.*) /articles/blogrss.php?$1 [I,L]
RewriteRule /articles/blogs(.*) /articles/blogs.php?$1 [I,L]
RewriteRule /articles/search(.*) /articles/search.php?$1 [I,L]
RewriteRule /articles/authors(.*) /articles/authors.php?$1 [I,L]
RewriteRule /articles/articlerss(.*) /articles/articlerss.php?$1 [I,L]
RewriteRule /articles/newsrss(.*) /articles/newsrss.php?$1 [I,L]
RewriteRule /articles/news(.*) /articles/news.php?$1 [I,L]
RewriteRule /articles/articles(.*) /articles/articles.php?$1 [I,L]
#My articles code ends here |
|
|
"When it gets dark enough, you can see the stars"
-Charles A. Beard
|
 |