Results 1 to 4 of 4

trying to convert ISAPI to .htaccess rules

This is a discussion on trying to convert ISAPI to .htaccess rules within the General Discussion forums, part of the vBulletin SEO Discussion category; I'm trying to convert some ISAPI rewrite rules so they can be used in a .htaccess file. But i'm having ...

  1. #1
    Senior Member
    Real Name
    dave
    Join Date
    Jun 2006
    Posts
    348
    Liked
    0 times
    Blog Entries
    1

    trying to convert ISAPI to .htaccess rules

    I'm trying to convert some ISAPI rewrite rules so they can be used in a .htaccess file. But i'm having some issues does anyone know a site that could do this automatically? There are only a few rules i need to rewrite

    Code:
    RewriteRule /categories(.*) /categories.php?$1 [I,L]
    RewriteRule /pages(.*) /pages.php?$1 [I,L]
    RewriteRule /blogrss(.*) /blogrss.php?$1 [I,L]
    RewriteRule /blogs(.*) /blogs.php?$1 [I,L]
    RewriteRule /search(.*) /search.php?$1 [I,L]
    RewriteRule /authors(.*) /authors.php?$1 [I,L]
    RewriteRule /articlerss(.*) /articlerss.php?$1 [I,L]
    RewriteRule /newsrss(.*) /newsrss.php?$1 [I,L]
    RewriteRule /news(.*) /news.php?$1 [I,L]
    RewriteRule /articles(.*) /articles.php?$1 [I,L]

  2. #2
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    168 times
    That should be as simple as:
    Code:
    RewriteRule ^categories(.*) categories.php?$1 [L]
    etc
    Last edited by Oleg Ignatiuk; 02-17-2008 at 03:20 PM.

  3. #3
    Senior Member
    Real Name
    dave
    Join Date
    Jun 2006
    Posts
    348
    Liked
    0 times
    Blog Entries
    1
    Finally got an answer from the product support that i was using, but you were correct as well Oleg (but you probably arleady knew that....)!

    Thanks
    Last edited by FightRice; 02-21-2008 at 11:12 PM.

  4. #4
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    168 times
    Great!

Similar Threads

  1. ISAPI Rewrite Rules
    By openmind in forum Troubleshooting
    Replies: 1
    Last Post: 08-24-2006, 02:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •