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 03-12-2012, 06:19 PM   PM User | #1
Daniel Israel
Regular Coder

 
Join Date: Aug 2006
Location: Richmond, CA
Posts: 137
Thanks: 3
Thanked 2 Times in 2 Posts
Daniel Israel is an unknown quantity at this point
Redirecting folder to sub-domain

Greetings,

I am working on a site where we are using a subdomain (dir.domain.com). Previously, the users were accessing the folder directly (www.domain.com/dir), but we want to force them to use the subdomain.

I've tried to do it using the mod_rewrite, but having trouble. This is what I have:


Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com
RewriteRule ^/dir(/.*)?$ http://dir.domain.com$1 [R=301,L]
It doesn't seem to be working properly, though. When I type in http://www.domain.com/dir/whatever.php, there's no redirect.

Any pointers appreciated. Thanks.
Daniel Israel is online now   Reply With Quote
Old 03-13-2012, 03:10 AM   PM User | #2
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,604
Thanks: 2
Thanked 399 Times in 392 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Try this in your document root .htaccess:
Code:
RewriteEngine on
RewriteRule ^dir(.*)?$ http://dir.domain.com$1 [R=301,L]
Inigoesdr is offline   Reply With Quote
Old 03-13-2012, 06:14 PM   PM User | #3
Daniel Israel
Regular Coder

 
Join Date: Aug 2006
Location: Richmond, CA
Posts: 137
Thanks: 3
Thanked 2 Times in 2 Posts
Daniel Israel is an unknown quantity at this point
Quote:
Originally Posted by Inigoesdr View Post
Try this in your document root .htaccess:
Code:
RewriteEngine on
RewriteRule ^dir(.*)?$ http://dir.domain.com$1 [R=301,L]
Thanks for the effort, but no change.
Daniel Israel is online now   Reply With Quote
Reply

Bookmarks

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:57 PM.


Advertisement
Log in to turn off these ads.