cPanel
How to point primary domain to a sub-folder in cPanel
In /Public_html Create a hidden file called .htaccess and paste the below redirect rule.
my website: worldcm.net.bd in Public_html: create new folder world --------------------# .htaccess main domain to subfolder redirectRewriteEngine onRewriteCond %{HTTP_HOST} ^(www.)?worldcm.net.bd$RewriteCond %{REQUEST_URI} !^/world/RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ /world/$1RewriteCond %{HTTP_HOST} ^(www.)?worldcm.net.bd$RewriteRule ^(/)?$ stamford/index.html [L] ------------------------------------