0

我认为这被称为一些 rewrite -proxy 的东西,但我不明白如何设置它。基本上,我在 localhost:38000 中有一个应用程序,我想在 mySite.com/test 中显示它,我该怎么做?

RewriteRule ^localhost:38000$ http://mySite.com/test/$1 [P]

4

1 回答 1

1

尝试这个:

RewriteRule ^/test(/.*)? http://localhost:38000$1 [P]
于 2012-05-28T14:35:07.133 回答