RewriteRule index.html http://localhost:5000/ [P]
RewriteRule (.*) http://localhost:5000/$1 [P]
上面的代码工作为example.com指向localhost:5000,但我的子域也受到了影响。我键入subdomain.example.com它运行localhost:5000,如何排除?
答案 0 :(得分:0)
要排除子域,只需在RewriteEngine指令
下添加以下规则RewriteCond %{HTTP_HOST} ^sub.domain.com$
RewriteRule ^ - [L]