|
I have been in contact with my hosting company in UK. They do not provide any form of scripting to clients, which in my opinion is stupid. Only thing I managed to get is that a conversion is needed:
From ...
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^(.*) http://www.yoursite.com/$1 [L,R=301]
on Zeus, will be ...
match URL into $ with ^[^\/]*\.html$
if matched then
set URL = index.php
endif
I never done such scripting and do not even know where to start. Hope someone can guide me or put me in the right direction.
Thanks,
Mark
|