ITS-CMS 2.0 URL设计构想

我这次重做cms,准备所有的链接按照下面方式作


http://localhost/index.html

http://localhost/cms/news/index.html  列出所有新闻
http://localhost/cms/news/index1.html 翻页
http://localhost/cms/news/20060410/n000000001.html 列出具体一条

http://localhost/cms/news/xjxjynews/index.html 可以继续往下加

http://localhost/cms/xxjj/index.html
http://localhost/cms/xxjj/xxld/index.html
http://localhost/cms/xxjj/xxld/about.html

整个节点按树状延生
所有/cms的下面都被拦截,然后根据URI调用相应模板
也就说/cms下面的路径都是虚假的,都不是服务器上的实际路径
而且这样的链接便于被搜索。便于用squid作前置缓存。便于隐藏实际后台实现
统一的入口也便于预防黑客攻击,防止例如 ../.。 或者 sql注入

如果使用php,实现的方法是使用URL复写

# BEGIN ITSCMS RESTRICTIONS
RewriteEngine on
RewriteBase /itscms
RewriteRule cms/.*?/.html cms.php
# END ITSCMS RESTRICTIONS

然后解析URL

function get_url_params( $base_url)
{
  $request = substr( $_SERVER['REQUEST_URI'], strlen( $base_url));

  if( substr( $request, -1) == '/')
    $request = substr( $request, 0, -1);

  return explode( '/', $request);
}

 

如果用JAVA实现

用/cms/* 实际上是转到servlet
使用 HttpServletRequest req
String pathInfo = req.getPathInfo() ;

然后解析路径

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值