P Petey Pablo New member Messages 224 Points 0 Emulator May 17, 2017 #2 Anyone can help me in apache to redirect the domain example.net to example.net/cp/
bWolfie I'm the man Messages 850 Points 0 Location Alberta, Midgard Github bWolfie Emulator May 17, 2017 #3 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
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
M maxine02 New member Messages 93 Points 0 May 17, 2017 #4 do you have cpanel? redirect your domain there to your subfolder
bWolfie I'm the man Messages 850 Points 0 Location Alberta, Midgard Github bWolfie Emulator May 18, 2017 #5 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.
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.