Jump to content
  • 0
Sign in to follow this  
Petey Pablo

Apache redirect domain to subfolder

Question

3 answers to this question

Recommended Posts

  • 0

In example.net/index.php

 

 

<html>
    <head>
        <meta http-equiv="Refresh" content="0;url=http://example.net/cp">
    </head>
</html>

 

Every time someone visits index.php (which is the page itself) they would be redirected to /cp

Share this post


Link to post
Share on other sites
  • 0

I forgot what the whole thing is called, and even what the file is called. But I remember you can put this in some /etc/confs-avaiable/something.??


<VirtualHost *:80>

ServerName example.net

DocumentRoot /var/www/html/

ErrorLog /var/www/html/forum/error.log

CustomLog /var/www/html/forum/requests.log combined

 

Redirect /index.php http://example.net/cp

</VirtualHost>

virtual host that's what it called. i think you should google it so you can learn for you OS.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.