Search Results

1
vote

How to dynamically redirect www-based URLs to non-www URLs with multiple domains in same VirtualHost

Your RewriteCond is a bit wonky. I'm surprised it does anything at all, since it would seem to be trying to match the host www.domain1.com against the pattern www\.www.domain1.c …
1
vote

Another mod_rewrite trailing slash question

A wild guess: there is a directory named "news", and the the automatic Apache directory "add a trailing slash" redirect is kicking in and interacting with your RewriteRule in a weird way. If that' …
2
votes

How can I speed up a web-application? (Avoid rebuilding a structure.)

The number one way to speed up your web application, especially when you have lots of mostly-static modules, classes and objects that need to be initialized: use a way of serving files that support …