嗨,我是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 =“ 动态文件夹 ”
谢谢!
答案 0 :(得分:0)
在obj.conf的默认对象中添加此规则后,可以重定向到索引页。 谢谢
<If $uri =~ '^/([a-zA-Z0-9+-]+)$'>
NameTrans fn="redirect" url="$uri/index.html"
</If>