Quantcast
Channel: DNS – HostOnNet.com
Viewing all articles
Browse latest Browse all 9

How to Change Document Root of Website Using .htaccess

$
0
0

htaccess
By default the document root of website on a cPanel server is /home/username/public_html .

At the time anyone search a domain from there own end the site displays the index page from default location.

That means from public_html folder. Here I’m explaining the way to change this default folder. That means you can customize the Index page fetching from your own folder.

This is possible via .htaccess. You will need to add the following code in your .htaccess file

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain.com$ 
RewriteCond %{REQUEST_URI} !folder/
RewriteRule (.*) /folder/$1 [L]

Replace ‘domain.com’ with your domain name and ‘folder’ with your custom folder name where you kept the index.


Viewing all articles
Browse latest Browse all 9

Trending Articles