Active TopicsActive Topics  Display List of Forum MembersMemberlist  HelpHelp   RegisterRegister  LoginLogin
ISAPI_Rewrite 3.0 support forum
 Helicon Tech : ISAPI_Rewrite 3.0 support forum
Subject Topic: ReWrite rule from *.htm to *.php?<stuff Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
sitecrafting
Newbie
Newbie


Joined: 18 September 2008
Location: United Kingdom
Online Status: Offline
Posts: 2
Posted: 18 September 2008 at 7:10pm | IP Logged Quote sitecrafting

new to ISAPI , need help with  2 items need assstance with syntax.

 

1. I have this enviornment

[//server/application/<stuff>] The below htaccss file is pulled from this enviornment http://application/<stuff> and is across multiple domains I have verified that all the "rewrites are correct" but is not formatted corret for my new enivornment of  http//server/applicaton/<stuff>

 

----XXX----htaccess file rules here

# Helicon ISAPI_Rewrite configuration file

# Version 3.1.0.56

 

RewriteEngine on

RewriteBase /

# passthrough for locateable static resources

RewriteCond %{REQUEST_FILENAME} -f

RewriteRule (.*) $1 [NC,L]

# hmc

RewriteCond %{HTTP:Host} production/highline

RewriteCond %{REQUEST_FILENAME} Highline_movie.html

RewriteRule (.*) ./resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/tour/Highline_movie.html [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule (.*popups.*$) ./resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} production/highline

#RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} production/highline

#RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} production/highline

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond URL (^/production/highline/.htm*).htm #will match any request to somedir directory and subdirectories, while

RewriteCond URL ^/somedir/ #will match only request to the root of the somedir.

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.org

RewriteRule (.*cancercenter.*$) http://www.highlinecancercenter.com/ [NC,L,R]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalcenter.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalcenter.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedical.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedical.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} hchnet.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} hchnet.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} hchnet.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} hchnet.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.hchnet.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} hchnet.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} hchnet.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} hchnet.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.org

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.org

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.org

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.org

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinehospital.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.net

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.net

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.net

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinehospital.net

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehealthcarenetwork.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinehealthcarenetwork.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinehealthcarenetwork.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinehealthcarenetwork.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehealthcarenetwork.com

RewriteRule ^$ dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinehealthcarenetwork.com

RewriteRule (.*popups.*$) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinehealthcarenetwork.com

RewriteRule ([^\/]*).htm($) dv.php?sid=2E9F51D1-025D-4F6E-8238-C834EE2829CA&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinehealthcarenetwork.com

RewriteRule (.*) resources/2E9F51D1-025D-4F6E-8238-C834EE2829CA/$1 [NC,L]

# hmg

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinemedicalgroup.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinemedicalgroup.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

 

RewriteCond %{HTTP:Host} www.highlinewomens.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomens.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomens.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealth.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealth.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.com

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.com

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.com

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.net

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.net

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.net

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinewomenshealthcenter.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.org

RewriteRule ^$ dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.org

RewriteRule ([^\/]*).htm dv.php?sid=BAF7A660-FDBA-4F48-9632-6B7597E69F51&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinewomenshealthcenter.org

RewriteRule (.*) resources/BAF7A660-FDBA-4F48-9632-6B7597E69F51/$1 [NC,L]

# hcc

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteCond %{REQUEST_FILENAME} Highline_movie.html

#RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/tour _tour_window1.html [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteCond %{REQUEST_FILENAME} Highline_tour_window1.html

#RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/tour _tour_window1.html [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteCond %{REQUEST_FILENAME} Highline_tour_window2.html

#RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/tour _tour_window2.html [NC,L]

 

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteRule ^$ dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteRule ([^\/]*).htm dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.com

RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.com

RewriteRule ^$ dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.com

RewriteRule ([^\/]*).htm dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.com

RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/$1 [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.org

RewriteRule ^$ dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=default [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.org

RewriteRule ([^\/]*).htm dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} www.highlinecancercenter.org

RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/$1 [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.org

RewriteRule ^$ dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=default [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.org

RewriteRule ([^\/]*).htm dv.php?sid=92175B9B-58CC-44E1-838E-15291E0CC2C6&pn=$1&%{QUERY_STRING} [NC,L]

RewriteCond %{HTTP:Host} highlinecancercenter.org

RewriteRule (.*) resources/92175B9B-58CC-44E1-838E-15291E0CC2C6/$1 [NC,L]

# lifedependsonit

RewriteCond %{HTTP:Host} www.lifedependsonit.org

RewriteRule (.*) http://www.highlinemedicalcenter.org/Campaign_For_New_ER.htm [NC,L,R]

RewriteCond %{HTTP:Host} lifedependsonit.org

RewriteRule (.*) http://www.highlinemedicalcenter.org/Campaign_For_New_ER.htm [NC,L,R]

 

--------XXX----- En htaccess

2. I need to rewrite  a rules from

.htm">http://server/application/<stuff>.htm

to this format

http://server/application/./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=<stuff>

There needs to be a better way of doing a Rewrite  then this 1 htm page to 1 php page

RewriteRule (.Find_a_Physician.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Find_a_Physician [NC,L]
RewriteRule (.Foundation.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Foundation [NC,L]
RewriteRule (.Foundation_Board.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Foundation_Board [NC,L]
RewriteRule (.Geriatric_Psychiatry_Services.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Geriatric_Psychiatry_Services [NC,L]
RewriteRule (.Grief_Support.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Grief_Support [NC,L]
RewriteRule (.Having_a_Baby_Here.htm) ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=Having_a_Baby_Here [NC,L]

 

any guidence would be greatly apperciated.

 



Edited by sitecrafting - 18 September 2008 at 7:16pm
Back to Top View sitecrafting's Profile Search for other posts by sitecrafting
 
Anton
Moderator Group
Moderator Group


Joined: 30 January 2007
Location: Ukraine
Online Status: Online
Posts: 4842
Posted: 19 September 2008 at 3:18am | IP Logged Quote Anton

If you have the same "sid" for all (or many) urls, you may try to use the following rule (instead of your above 6 rules):

RewriteBase /
RewriteRule ^([^./]+)\.htm$ ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=$1 [NC,L]



__________________
Regards,
Anton
Back to Top View Anton's Profile Search for other posts by Anton
 
sitecrafting
Newbie
Newbie


Joined: 18 September 2008
Location: United Kingdom
Online Status: Offline
Posts: 2
Posted: 19 September 2008 at 10:39am | IP Logged Quote sitecrafting

RewriteBase /
RewriteRule ^([^./]+)\.htm$ ./dv.php?sid=2e9f51d1-025d-4f6e-8238-c834ee2829ca&pn=$1 [NC,L]

worked for my second question. thanks

Back to Top View sitecrafting's Profile Search for other posts by sitecrafting
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You can vote in polls in this forum