Reputation: 1473
How can i change URL by using url rewriting with help of .htaccess
Below are the URL(s),
FROM:
http://www.test.xyz.com/ab/web/pds/dispall/web/web-design
TO:
http://www.web.test.xyz.com/ab/web/pds/dispall/web-design
I want to use fifth(5th) parameter as a Sub Domain.
Thanks!
Upvotes: 1
Views: 100
Reputation: 786289
Put this code in your DOCUMENT_ROOT/.htaccess
file:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.test\.xyz\.com$ [NC]
RewriteCond %{REQUEST_URI} /pds/
RewriteRule ^[^/]+/[^/]+/[^/]+/[^/]+/([^/]+)/.*$ http://www.$1.test.xyz.com%{REQUEST_URI} [NE,R=301,L]
Upvotes: 2