当前位置: 首页 > 工具软件 > Zope > 使用案例 >

配置zope的VHM和apache rewrite

徐嘉勋
2023-12-01
1,进入zope的ZMI中
2,添加一个Virtual Host Monster,ID 叫做VHM
3,创建目录vhm_test
4,进入目录vhm_test,创建一个DTML method ,ID叫做index_html
内容如下:
<html>
<body>
<table border="1">
<tr>
<td>Absolute URL</td>
<td><dtml-var absolute_url></td>
</tr>
<tr>
<td>URL0</td>
<td><dtml-var URL0></td>
</tr>
<tr>
<td>URL1</td>
<td><dtml-var URL1></td>
</tr>
</table>
</body>
</html>

5,保存,View
   会在浏览器中出现
    Absolute URL http://localhost:8080/vhm_test
    URL0 http://localhost:8080/vhm_test/index_html
    URL1 http://localhost:8080/vhm_test
6,配置apache的rewrite功能
    编辑apache的httpd.conf文件
   
    Listen 80下面
 添加如下代码
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.example.com
RewriteEngine On
RewriteRule ^/(.*) http://127.0.0.1:8080/VirtualHostBase/http/www.example.com:80/vhm_test/VirtualHostRoot/
</VirtualHost>

这里假设你的zope监听8080端口,并且apache启用了rewrite功能
 类似资料: