| Posted: 28 January 2010 at 2:50pm | IP Logged
|
|
|
I have a basic rewrite that works fine: RewriteRule ^/my-super-product\.html$ /index.cfm?action=home&container=59 there are about 300 of these links.
I need it now to be slightly different per domaine. If a domain is mycompany.co.uk then I can leave it as is. But if it is mycompany.fr I need to add a subfolder "english/" in front of the rewrite.
if domain is mycompany.co.uk the link should look like this: mycompany.co.uk/my-super-product.html and rewritten to this mycompany.co.uk/index.cfm?action=home&container=59
if domain is mycompany.fr the link should look like this: mycompany.fr/english/my-super-product.html and also rewritten to this mycompany.co.uk/index.cfm?action=home&container=59
|