| Posted: 06 March 2008 at 9:28am | IP Logged
|
|
|
Yaroslav,
Some News...
Nevermind all previous Steps...
I download and installed the lastest version of Isapi Rewrite 3. I made some progress.
See my config file bellow, the site with Rewrite is:
http://proxy.dualtec.com.br
Now the issue is that i have a working proxy rule that redirects all requests to http://proxy.dualtec.com.br/videos to www.dualtec.com.br keeping the original url but see the diference between the two requests.....
Why ?
---------------------
# Helicon ISAPI_Rewrite configuration file # Version 3.1.0.42
RewriteEngine On RewriteCompatibility2 On RepeatLimit 32 RewriteBase # unsupported directive: [ISAPI_Rewrite]
# 3600 = 1 hour # unsupported directive: CacheClockRate 3600
# Block external access to the httpd.ini and httpd.parse.errors files RewriteRule ^/httpd(?:\.ini|\.parse\.errors).*$ / [NC,F,O]
# Block external access to the Helper ISAPI Extension RewriteRule ^.*\.isrwhlp$ / [NC,F,O]
# Rewrite 1 RewriteRule ^/servidor$ http\://www.dualtec.com.br/conteudo/servidor_dedicado.htm [NC,R=301]
# Rewrite 2
RewriteProxy /videos(.*) http://www.dualtec.com.br$1
-------------------END--------------------------
|