我的服务器localhost:4873
中正在运行一个应用程序。我想通过带有重定向的.htaccess将subdomain.mysite.com
重定向到http://localhost:4873
。
我尝试了这个,但是得到了Internal Server Error
。我认为.htaccess conf没问题,问题出在应用程序中;您可以确认重写是否可以吗?
.htaccess:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^subdomain.mydomain.com [NC]
RewriteRule http://localhost:4873
谢谢!