Hey guys I have a forum installed in the /forum directory in my site and I need to redirect the domain to this folder. When I use redirection in Cpanel it says something about loop.. Please help
There are many ways to redirect..here's a simple one.. Create a .php file in the root folder and write this code in the file, <?php header("Location: http://www.yourdomainname.com/forums"); ?> Code (markup): or use this code in the head section of an html file in the root folder. <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/forums"> Code (markup):
Good to know you've solved it. You can add the following code to your .htaccess file if you are on apache server for the same effect. Redirect / /forum Code (markup):