How to redirect Sub domain as attribute in page with .htaccess
- by rkaartikeyan
I want like this Ex:
http://user1.mysite.com or http://user2.mysite.com if anyone enter URL Like these on browsers it should go as bellow
http://mysite.com/user.php?userName=user1
How can i solve this with .htaccess
With help of Prix i solved this Issue
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mysite\.com [NC]
RewriteCond %{HTTP_HOST}…