Re: [EMAIL PROTECTED] 301 redirects

2008-02-19 Thread Eric Covener
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]

[EMAIL PROTECTED] 301 redirects

2008-02-19 Thread stuartray
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

Re: [EMAIL PROTECTED] 301 Redirects

2007-11-26 Thread Krist van Besien
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

Re: [EMAIL PROTECTED] 301 Redirects

2007-11-26 Thread Christian Folini
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 (

[EMAIL PROTECTED] 301 Redirects

2007-11-26 Thread Grant Peel
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 --