i have recently bought a domain they used to ave forums on it as site.com/forums but i installed a another script on that but i want to redirect the old pages to site.com how to do it. I dont know about htaccess so guide me thanks
rename any index.php or index.html file to index2.php / .html new index.php file <?php header("Location: http://www.site.com");?> PHP:
You can try htaccess redirect: RewriteEngine On RewriteRule ^site\.com/forum/(.*) site\.com/$1 [R,L] Code (markup):