Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to get

www.example.com

to go directly to

www.example.com/store

I have tried multiple bits of code and none work. Please help!

What I've tried:

Options +FollowSymlinks
RewriteEngine on

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

RewriteCond %{HTTP_HOST} ^(.+)\www.example\.com$
RewriteRule ^/(.*)$ /samle/%1/$1 [L]

What am I doing wrong?

share|improve this question
2  
Please format the code in the code tags – Artem Russakovskii Jun 13 '09 at 9:37

10 Answers

Try this:

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

If you want an external redirect, set the R flag there as well:

RewriteRule ^$ /store [L,R=301]
share|improve this answer
2  
That worked beautifully. Both the sample.com and www.sample.com redirect to www.sample.com/store. That's just what I wanted. Thank you Gumbo, and everyone who answered. I learned a lot reading your responses and appreciate the feedback. – AlphaSmith Jun 13 '09 at 10:09
I'm curious, will this show www.example.com as the URI after the redirect? If not, how would it be changed to do so? – stefmikhail Oct 5 '11 at 21:05
♦ - And why would your solution be better than Sander's down below? I notice your final line is the same, but if that is all that is needed, why include the RewriteCond and the first RewriteRule? – stefmikhail Oct 5 '11 at 21:42
if this code used, can you type in your browser exmple.com/../aboveSubDir? – The Pet Jul 27 '12 at 3:05
@GamErix This would be resolved to /aboveSubDir by either the browser or by the server. – Gumbo Jul 27 '12 at 5:47

You can use a rewrite rule that uses ^$ to represent the root and rewrite that to your /store directory, like this:

RewriteEngine On
RewriteRule ^$ /store [L]
share|improve this answer
2  
Clean simple solution, solved a similar challenge I had, thanks. – Egil Hansen Jul 21 '11 at 20:54
3  
RewriteRule ^/?$ /index.do [R] – kewpiedoll99 Jul 19 '12 at 19:28

Here is what I used to redirect to a subdirectory. This did it invisibly and still allows through requests that match an existing file or whatever.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?site.com$
RewriteCond %{REQUEST_URI} !^/subdir/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /subdir/$1
RewriteCond %{HTTP_HOST} ^(www.)?site.com$
RewriteRule ^(/)?$ subdir/index.php [L]

Change out site.com and subdir with your values.

share|improve this answer
1  
Worked perfectly for me, thanks. – jvenema Nov 17 '11 at 16:52
Perfect, old links (with /subdir/ in them) still work! – Zar Shardan Aug 27 '12 at 8:24
Works as expected! Great! – kachar Jan 10 at 11:15
works for me thanks – byroncorrales Apr 1 at 8:24
the home page was 'stealth' ... but once I click a link the subdir name shows up in the address bar ... is there a way to prevent the subdir name from showing up? – dsdsdsdsd May 16 at 11:11

I think the main problems with the code you posted are:

  • the first line matches on a host beginning with strictly sample.com, so www.sample.com doesn't match.

  • the second line wants at least one character, followed by www.sample.com which also doesn't match (why did you escape the first w?)

  • none of the included rules redirect to the url you specified in your goal (plus, sample is misspelled as samle, but that's irrelevant).

For reference, here's the code you currently have:

Options +FollowSymlinks
RewriteEngine on

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

RewriteCond %{HTTP_HOST} ^(.+)\www.sample\.com$
RewriteRule ^/(.*)$ /samle/%1/$1 [L]
share|improve this answer

This seemed the simplest solution:

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) http://www.example.com/store [R=301,L]

I was getting redirect loops with some of the other solutions.

share|improve this answer

Another alternative if you want to rewrite the URL and hide the original URL:

RewriteEngine on
RewriteRule ^(.*)$ /store/$1 [L]

With this, if you for example type http://www.example.com/product.php?id=4, it will transparently open the file at http://www.example.com/store/product.php?id=4 but without showing to the user the full url.

share|improve this answer

A little googling, gives me these results:

RewriteEngine On
RewriteBase /
RewriteRule ^index.(.*)?$ http://domain.com/subfolder/ [r=301]

This will redirect any attempt to access a file named index.something to your subfolder, whether the file exists or not.

Or try this:

RewriteCond %{HTTP_HOST} !^www.sample.com$ [NC]
RewriteRule ^(.*)$ %{HTTP_HOST}/samlse/$1 [R=301,L]

I haven't done much redirect in the .htaccess file, so I'm not sure if this will work.

share|improve this answer

I have found that in order to avoid circular redirection, it is important to limit the scope of redirection to root directory. I would have used:

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) http://www.example.com/store [R=301,L]
share|improve this answer

try to use below lines in htaccess

Note: you may need to check what is the name of the default.html

default.html is the file that load by default in the root folder.

RewriteEngine

Redirect /default.html http://example.com/store/

share|improve this answer

and you can easily do it without htaccess at all, with php

create an index.php file and put in the code.

<?php
header('Location: http://example.com/subdir');
?>

done and done.

share|improve this answer
The OP didn't specify PHP as available language. He did however tagged the question as mod-rewrite-related. – andr Jan 7 at 21:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.