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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.