I want to redirect the subfolder and allcontents to root domain.
For example:
http://www.example.com/ubb/ will redirect to http://www.example.com
I put the .htaccess on ubb folder and the code is:
RewriteEngine On
RewriteRule ^.*$ / [R=302,L]
However when you access http://www.example.com/ubb/threads.php it will redirect to http://www.example.com/threads.php it should be http://www.example.com
Is there any code to try or other possible solution?