Mobile app version of vmapp.org
Login or Join
Kimberly868

: Redirect requests to another folder I want to redirect all the requests that come to the folder 'test' to 'test1' using apache configurations. How do i do it?

@Kimberly868

Posted in: #Apache2

I want to redirect all the requests that come to the folder 'test' to 'test1' using apache configurations. How do i do it?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kimberly868

1 Comments

Sorted by latest first Latest Oldest Best

 

@Yeniel560

Could use mod_alias to make it happen:

Alias /path/to/test /path/to/test1

Put this into your config for the website (or the config for the virtual host). If you have overrides enabled for the directory, this could be put in the .htaccess file for the root of your website.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme