Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to redirect every visitor that tries to enter my homepage (http://www.mysite.com/) to the Pub directory (http://www.mysite.com/Pub/)

I want the url field to show http://www.mysite.com and not http://www.mysite.com/Pub/

I've tried this, but for some reason it doesn't work:

Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /

RewriteRule / /Pub/

Thanks,

share|improve this question

2 Answers

up vote 1 down vote accepted

The answer is here: how to mask URL with htaccess ?

long story short - it's impossible to show http://www.mysite.com and not http://www.mysite.com/Pub/.

Btw - you mean permanent redirect (301) or non permanent redirect (307)?

share|improve this answer

Have your rule in .htacess like this:

RewriteEngine on
Options +FollowSymlinks -MultiViews

RewriteRule ^/?$ /Pub/ [L]

It is important to not use R flag above so that its an internal redirect only without changing URL in the browser.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.