使用.htaccess排除子域名?

时间:2016-08-12 17:28:14

标签: wordpress .htaccess configuration

RewriteRule index.html http://localhost:5000/ [P]
RewriteRule (.*) http://localhost:5000/$1 [P]

上面的代码工作为example.com指向localhost:5000,但我的子域也受到了影响。我键入subdomain.example.com它运行localhost:5000,如何排除?

1 个答案:

答案 0 :(得分:0)

要排除子域,只需在RewriteEngine指令

下添加以下规则
RewriteCond %{HTTP_HOST} ^sub.domain.com$
RewriteRule ^ - [L]