.htaccess重定向到特定端口,而不更改URL

时间:2016-10-16 12:03:59

标签: .htaccess url redirect

我想在不更改网址的情况下将example.org/folder重定向到example.org:3000

我的.htaccess位于/ folder:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.org$
RewriteCond %{REQUEST_URI} !^http://example.org:3000/
RewriteRule ^(.*)$ http://example.org:3000/$1 [P]

可行,但网址会发生变化。

0 个答案:

没有答案