Go Back   CodingForums.com > :: Server side development > Apache configuration

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 01-24-2009, 05:08 PM   PM User | #1
bencharity
New Coder

 
Join Date: Dec 2008
Location: Kennesaw, GA
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
bencharity is an unknown quantity at this point
Question .htaccess exception...

I posted a bit ago asking about a redirect from mysite.com to www.mysite.com and got it working. Now however this seems to be breaking my blog (wordpress).

Again I'm very new to htaccess, but is there a way to redirect all my site as above except a certain subfolder (eg. /blog/)?

Thanks in advance,
Ben

by the way, I'm using this:

Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
bencharity is offline   Reply With Quote
Old 01-24-2009, 06:29 PM   PM User | #2
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,602
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Just add a second condition to exclude your blog's URL:
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{REQUEST_URI} !^/blog
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Inigoesdr is offline   Reply With Quote
Old 01-26-2009, 05:05 PM   PM User | #3
bencharity
New Coder

 
Join Date: Dec 2008
Location: Kennesaw, GA
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
bencharity is an unknown quantity at this point
Awesome!! It worked perfectly!

Thanks so much!
Ben
bencharity is offline   Reply With Quote
Reply

Bookmarks

Tags
htaccess, redirect, subfolder

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:28 AM.


Advertisement
Log in to turn off these ads.