Apache redirect domain to subfolder

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

 
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.
 
Back
Top