Wednesday 14 April 2004 3:15:42 pm
Hi Bjorn Unfortunately it didnt work. After a bit of digging around in my httpd.conf files (it was setup by the ISP when we rented the server) I eventually found that there was an alias command for /squirrelmail and the rewrite rule kept clashing with it. Rather than change the alias (because of the way the webser appliance is set up) i found that using rewritecond worked :-
RewriteEngine On
RewriteCond %{REQUEST_URI} !(^/squirrelmail(.*)) RewriteRule !(^/design|^/var/.*/storage|^/var/storage|^/var/.*/cache|^/var/cache|^/extension/.*/design|^/kernel/setup/packages).*\.(gif|css|jpg|png|jar|js|ico|pdf|swf)$ /index.php Thanks once again for your help - although your idea didnt work you did give me the confidence to hunt around and work it out for myself !
|