The below is original .htaccess, i want to modify it to point to a different folder such as www.yourdomain.com/clients/foldername. How do i do it?
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
do let me know what i should do that it point to that particular folder. Should i write like this
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.yourdomain(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
do help me