|
网站是java做的,apache+proxy_ajp+tomcat,想用rewrite把全站连接都伪静态了,我不懂伪静态的写法和规则,自己试着写了下,有些问题,想请教下这方面的高手,问题如下:
apache加载了rewrite模块,虚拟主机里面的配置如下:
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^/index.html$ /comTop.do?method=top [PT] //网站首页
- RewriteRule ^/group.html$ /groupTop.do?method=init [PT] //网站频道首页
- RewriteRule ^/bus.html$ /busInfo.do?method=findAllList [PT] //网站频道首页
- RewriteRule ^/com/top_([0-9]+).html$ /comTop.do?method=activeList&page=$1 [PT] //网站文章页
- </IfModule>
复制代码
以上规则,如果在地址栏里敲http://localhost/index.html可 ... 是动态地址。
请问,规则怎么写才能让页面上相应的连接从打开就显示的是静态连接。 |
|