<IfModule mod_rewrite.c>
    RewriteEngine on
   
   RewriteCond %{http_host} ^aceallyxm.com [NC]
   RewriteRule ^(.*)$ http://www.aceallyxm.com/$1 [L,R=301]


    # 重写路由为php请求
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?r=$1 [QSA,L]
  

</IfModule>