I want to create new subdomain for mobile site. so i want to point this domain to subfolder in root folder in my server:
Example: www.mywebsite.com point to www folder
I will create sub folder inside wwww name it: mobile_version I will create subdomain for mobile name it: m.mywebsite.com I want to point m.mywebsite.com to mobile_version folder NOT REDIRECT
if someone open mywebsite from mobile then will redirect to m.mywebsite.com and show the index.php inside mobile_version without redirect to m.mywebsite.com/mobile-version
I hope I passed my issue.
what I did in htaccess:
RewriteCond %{HTTP_HOST} !^m.jeelplus.com$
RewriteRule ^(.*)$ http://m.jeelplus.com/mobile_version/$1 [R=301,L]