我正在尝试将子域代理到在端口3000上运行的节点应用程序。它代理对文件的请求,例如subdomain.domain.com/jquery.js。它工作正常,显示节点服务的文件。但是当我尝试访问子域的根时,我猜apache试图找到index.php并失败并显示消息RewriteEngine On
RewriteRule ^(.*)$ http://127.0.0.1:3000/$1 [P,L]
RewriteRule ^$ http://127.0.0.1:3000/ [P,L]
RewriteEngine On
。如何使其工作,以便它将提供节点应用程序提供的任何内容?
我的htaccess
{{1}}
答案 0 :(得分:2)
DirectoryIndex disabled
制定了