友
http://testing.com/HotelName/Rooms是我的原始网址,它显示了所有房间的详细信息 酒店,但我想要与HotelName.testing.com相同的详细信息,但我没有在DNS注册HotelName.testing.com
RewriteEngine on
RewriteRule ^(.*)/(.*)/Rooms$ http://$2.example.com [R]
显示错误menas DNS未找到
任何建议
答案 0 :(得分:0)
试试这个:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)ablogapart.org [NC]
RewriteRule ^(.*)$ http://michaelkrol.com/$1 [R=301,L]
这会将网页重定向到新域名。