Iplanet Web服务器动态目录访问

时间:2018-08-08 07:03:44

标签: web-config iplanet

嗨,我是Iplanet Web服务器的新手。 如果访问URL为 abc.co.sg/XYZ ->,则会显示 abc.co.sg/XYZ/index.html
我可以在 obj.conf

中进行静态目录访问
>>> x = 0
>>> y = 1
>>> x, y = y, x
>>> x
1
>>> y
0

我想要做的是ppath =“ 动态文件夹

谢谢!

1 个答案:

答案 0 :(得分:0)

在obj.conf的默认对象中添加此规则后,可以重定向到索引页。 谢谢

<If $uri =~ '^/([a-zA-Z0-9+-]+)$'>
    NameTrans fn="redirect" url="$uri/index.html"
</If>