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 install a Symfony based website on a shared hosting server. I can write into /www/ only.

The problem is that Symfony will be in /www/web/ ; Is there a way to serve

www.example.com/web/index.php/something

when users ask for :

www.example.com/index.php/something
share|improve this question

3 Answers

up vote 3 down vote accepted

Try this rule in the .htaccess file in the document root directory:

RewriteEngine on
RewriteRule !^web/ web%{REQUEST_URI}

This will prepend /web to every request that’s path does not already start with /web/.

share|improve this answer
This works, but is there anyway to not add "/web/" to the url ? I'm redoing my website using symfony and I'd like to have the same urls as before, to keep my pagerank. – Manu Sep 10 '10 at 14:48
@Manu: This rule shouldn’t cause an external redirect. Are you using any other rules that may cause that? – Gumbo Sep 10 '10 at 14:50
I don't think so, I'll look. – Manu Sep 10 '10 at 14:56
@Manu: Take a look at mod_rewrite’s logging feature to see what causes this external redirect. – Gumbo Sep 10 '10 at 15:05
Wow I don't think I can access that on the server – Manu Sep 10 '10 at 16:25
show 1 more comment

I've already tried

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !^/web/
RewriteRule .* /web/%1 [QSA]

And

RewriteEngine On
RewriteBase /web/
RewriteRule . /index.php [L]
share|improve this answer
RewriteCond %{REQUEST_URI} !/web/
RewriteRule ^(.*)$ /web/$1 [L]
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.