Hello,
Anyone can help me for translate the following rules to ISAPI ReWrite? It's the rules from the phpbb module.
Best Regards.
RewriteEngine on
# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
#RewriteBase /
RewriteRule ^quote_(.*)$ posting.php?mode=quote&p=$1 [L]
RewriteRule ^postnew_forum_(.*)$ posting.php?mode=newtopic&f=$1 [L]
RewriteRule ^replyto_topic_(.*)$ posting.php?mode=reply&t=$1 [L]
RewriteRule ^search_newposts$ search.php?search_id=newposts [L]
RewriteRule ^search_ego$ search.php?search_id=egosearch [L]
RewriteRule ^unwatch_topic_(.*)$ viewtopic.php?unwatch=topic&t=$1 [L]
RewriteCond %{QUERY_STRING} ^mode=viewprofile&u=(.*)$
RewriteRule ^profile.php(.*)$ ../user/%1 [L]
RewriteCond %{QUERY_STRING} ^mode=editprofile(.*)$
RewriteRule ^profile.php(.*)$ ../user [L]
RewriteCond %{QUERY_STRING} ^mode=register(.*)$
RewriteRule ^profile.php(.*)$ ../user/register [L]
RewriteCond %{QUERY_STRING} ^logout=true(.*)$
RewriteRule ^login.php(.*)$ ../index.php?q=logout [L]
RewriteCond %{QUERY_STRING} ^redirect=posting.php&mode=newtopic&f=(.*)$
RewriteRule ^login.php(.*)$ ../user/login?destination=forum/postnew_forum_%1 [L]
RewriteCond %{QUERY_STRING} ^redirect=posting.php&mode=reply&t=(.*)$