我这次重做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() ;
然后解析路径