.htaccess - redirect desktop to mobile error -


i created webpage www.m.burdichiro.com/indexm.html tried redirect mobile users original site, www.burdichiro.com using .htaccess file. not open, , comes error site not available, , shows www.newdomain.com in address window. can open open burdichiro.com/index.html shows desktop view, large mobile screen. why created indexm.html not go there. suggestions? here coding in htaccess:

rewriteengine on # check mime types commonly accepted mobile devices rewritecond %{http_accept} *text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [nc] rewritecond %{request_uri} ^/$ rewriterule ^ http://www.m.burdichiro.com/indexm.html%{request_uri} [r,l] 


Comments