| Posted: 13 June 2010 at 10:40am | IP Logged
|
|
|
I have access to root directory and was asked to supply an ini file that will allow redirection of domains
what I need is: if for example user types in url
http://www.ariel-info.co.il
user is redirected to the files in the folder:
http://www.gillettefusion.co.il/www.ariel-info.co.il
yet still sees the original (short) URL
please look at my code below
----------------------------------------
[ISAPI_Rewrite]
RewriteRule /Ariel-info.co.il /www.gillettefusion.co.il/www.ariel-info.co.il [I,L] RewriteRule /brauntower.co.il /www.gillettefusion.co.il/www.brauntower.co.il [I,L] RewriteRule /Oral-b.co.il /www.gillettefusion.co.il/www.oral-b.co.il [I,L]
-------------------------------------------------------------
|