Recent Topics

1 Mar 01, 2009 07:08    

My b2evolution Version: 2.x

Hi. For SEO reasons I am trying to consolidate my urls. I want to go exclusively to thechumslick.com and redirect from www.thechumslick.com to thechumslick.com

So I put this stuff in my .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^thechumslick.com$ [NC]
RewriteRule ^(.*)$ http://thechumslick.com/$1 [L,R=301]

Now it worked, but I am getting issues in my B2EVO backoffice.

When I try to edit posts I get this message:

Not Found

The requested URL //admin.php?blog=2&show_past=1&show_future=1&show_statuses%5B%5D=published&show_statuses%5B%5D=protected&show_statuses%5B%5D=private&show_statuses%5B%5D=deprecated&show_statuses%5B%5D=redirected&orderby=datemodified&posts=5 was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8i DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_rbl1.0 Server at thechumslick.com Port 80

Does anyone have any ideas how I can resolve this?

Thanks.

Oh, I just noticed that while my blog looks fine in FF on Explorer the skin seems to have fallen apart since I made the .htaccess modification. Also, individual posts are no longer working in IE.

2 Mar 01, 2009 09:56

RewriteEngine On

RewriteCond %{HTTP_HOST} www\.(.*)
RewriteRule (.*) http://%1/$1 [R=301,L]

¥


Form is loading...