0

我想设置一个接受以下浏览器 URL 的 Apache 重定向规则:

192.168.100.128/test 

并将其转换为以下内容:

http://192.168.100.128:9001/forms/frmservlet?config=testjpi

我查看了 httpd.conf 并尝试同时使用 Alais 和 Rewrite 模块,但我都无法工作。

别名:

Alias /test http://192.168.100.128:9001/forms/frmservlet?config=testjpi

并且还重写:

<IfModule rewrite_module>
 RewriteEngine  on
 RewriteRule    http://192.168.100.128/test  http://192.168.100.128:9001/forms/frmservlet?config=testjpi
 RewriteRule    /test   http://192.168.100.128:9001/forms/frmservlet?config=testjpi 
</IfModule>

如果我正在做的事情是可能的,任何想法,如果是这样,我该如何去做呢?我对Apache的了解有限,所以我有点盲目。

TIA。

4

1 回答 1

1

别名不适用于仅适用于目录的 URL。

尝试:

Redirect permanent /test http://192.168.100.128:9001/forms/frmservlet?config=testjpi

更多文档:http ://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirect

于 2014-03-12T11:44:33.020 回答