我想设置一个接受以下浏览器 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。