我试图some_path
在我的网站上捕获一条路由并将其重定向到同一服务器上的不同端口。以下代码适用于服务器,但不适用于我的本地主机框。我正在使用 Ubuntu
<IfModule mod_rewrite.c>
Options +FollowSymLinks -Indexes
RewriteEngine on
RewriteBase /
# Works on the server
RewriteRule ^some_path/(.*)$ http://remoteserver.com:1337/$1 [P,L]
# Does not work on the localhost
RewriteRule ^some_local_path/(.*)$ http://localhost:1337/$1 [P,L]
</IfModule>