Jump to content

Redirect "/" to "/home"


maexus

Recommended Posts

I’m trying to figure out what to add to my htaccess to redirect “/” to “/home” but to complicate things, the app may not be in the root directory. It could be a sub directory, like this:

 

http://localhost/app/

 

to

 

 

http://localhost/app/home

 

I have tried looking at mod_rewrite tutorials but still can’t get it to work. This is what I’ve tried.

 

RewriteRule ^/$ /home

 

Which, does nothing. Please help!

Link to comment
https://forums.phpfreaks.com/topic/140369-redirect-to-home/
Share on other sites

...is there a way to set the mod_rewrite to be relative to the current directory?

 

Sort of.  You could use a blanket regexp.

 

Something like

 

RewriteRule app/?$ /app/home/

 

(Or you might have to use:

RewriteRule (.*)app/?$ /app/home/

)

 

Only problem with that is that it would work with anything that ends in app.

 

 

Why would you ever link like you're implying you will be linking though?  Why not use absolute paths?

Link to comment
https://forums.phpfreaks.com/topic/140369-redirect-to-home/#findComment-734711
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.