To set separate document root in httpd , we need to make certain changes in httpd.conf. Add following line in httpd.conf
Alias /personal/vishesh /var/personal_work_area/vishesh
DirectoryIndex index.php
After that create .htaccess file inside /var/personal_work_area/vishesh and put following entry in that
Options +FollowSymLinks
RewriteEngine On
RewriteBase /personal/vishesh/test
RewriteRule ^alice.html$ bob.html
alice.html and bob.html are html files
Alias /personal/vishesh /var/personal_work_area/vishesh
DirectoryIndex index.php
After that create .htaccess file inside /var/personal_work_area/vishesh and put following entry in that
Options +FollowSymLinks
RewriteEngine On
RewriteBase /personal/vishesh/test
RewriteRule ^alice.html$ bob.html
alice.html and bob.html are html files