我这样没有错误吧。
RewriteEngine on # 把 wap.mogic.net改为你要绑定的域名. RewriteCond %{HTTP_HOST} ^(www.)?wap.mogic.net$ # 把 /e/wap/改为要绑定的目录. RewriteCond %{REQUEST_URI} !^/e/wap/ # 不要改以下两行. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # 把 /e/wap/改为要绑定的目录. RewriteRule ^(.*)$ /e/wap/$1 # 把 wap.dakm.cn改为你要绑定的域名 # 把 /e/wap/ 改为要绑定的目录. # /e/wap/ 后面是首页文件index.php, index.html…… RewriteCond %{HTTP_HOST} ^(www.)?wap.mogic.net$ RewriteRule ^(/)?$ /e/wap/index.php [L]
|