Subscribe to " FACEITNET " Youtube channel for more interesting videos
How to hide folder name from url (using .htaccess)
This will assume you have http://domain.com/cabinet as where the content you want to load is.
And the resulting URL to only show http://domain.com but still load the content in in the /cabinet folder
First of all login to your hosting server using FTP and find the .htaccess under public_html
Click Edit and add the following lines, save and refresh the page, now go back to your website URL and try now....
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/(cabinet)
RewriteRule (.*) /cabinet/$1
Cool , Say Thanks if works for you....