Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为这被称为一些 rewrite -proxy 的东西,但我不明白如何设置它。基本上,我在 localhost:38000 中有一个应用程序,我想在 mySite.com/test 中显示它,我该怎么做?
RewriteRule ^localhost:38000$ http://mySite.com/test/$1 [P]
RewriteRule ^localhost:38000$ http://mySite.com/test/$1 [P
尝试这个:
RewriteRule ^/test(/.*)? http://localhost:38000$1 [P]