On Feb 19, 2008 8:53 PM, <[EMAIL PROTECTED]> wrote:
> I need to 301 rediect mysite.com to www.mysite.com. I found two examples on
http://httpd.apache.org/docs/2.2/rewrite/rewrite_guide.html#canonicalhost
--
Eric Covener
[EMAIL PROTECTED]
Hi All,
I need to 301 rediect mysite.com to www.mysite.com. I found two examples on
google search :
RewriteEngine on
RewriteCond %{http_host} ^mysite.com [nc]
RewriteRule ^(.*)$ http://www.mysite.com$1 [r=301,nc] and??
RewriteEngine on
RewriteCond %{http_host} ^mysite\.com$
RewriteRul
On Nov 26, 2007 2:52 PM, Christian Folini <[EMAIL PROTECTED]> wrote:
> On Mon, Nov 26, 2007 at 08:25:40AM -0500, Grant Peel wrote:
> > I have a client for whom I have added about 500 301 redirects in thier
> > VirtualHost container. The server has about 200 VirtualHosts total.
> >
> > What kind of
On Mon, Nov 26, 2007 at 08:25:40AM -0500, Grant Peel wrote:
> I have a client for whom I have added about 500 301 redirects in thier
> VirtualHost container. The server has about 200 VirtualHosts total.
>
> What kind of performance issues would one think all those redirects have on
> the whole (
Hi all,
I have a client for whom I have added about 500 301 redirects in thier
VirtualHost container. The server has about 200 VirtualHosts total.
What kind of performance issues would one think all those redirects have on
the whole (Apache) server?
-Grant
--