Is there anyway along with .htaccess I can create subdomains using reqrite rules? Example: something.mysite.com is the same as mysite.com/index.php?p=something Thanks
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?domain.com$ [NC] RewriteRule ^same/(.*) http://$1.domain.com [R=301,L]