已發現是zeus不支持apache的rewrite功能導致的~
目前我的解決方法是在zeus管理界面中的Request Rewriting部分中設置Rewrite Script
insensitive match URL into $ with ^(.*)/blog/post/([0-9]+)/([0-9]+)$
if matched then set URL = $1/blog/index.php?op=ViewArticle&blogId=$2&articleId=$3
insensitive match URL into $ with ^(.*)/blog/archives/([0-9]+)/([0-9]{6,8})$
if matched then set URL = $1/blog/index.php?blogId=$2&Date=$3
insensitive match URL into $ with ^(.*)/blog/album/([0-9]+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?op=ViewAlbum&blogId=$2&albumId=$3
insensitive match URL into $ with ^(.*)/blog/album/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?op=ViewAlbum&blogId=$2&albumId=0
insensitive match URL into $ with ^(.*)/blog/category/([0-9]+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?op=Default&blogId=$2&postCategoryId=$3
insensitive match URL into $ with ^(.*)/blog/rss/([0-9]+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/rss.php?blogId=$2&categoryId=$3
insensitive match URL into $ with ^(.*)/blog/rss/(.+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/rss.php?blogId=$3&profile=$2
insensitive match URL into $ with ^(.*)/blog/trackbacks/([0-9]+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?op=Trackbacks&blogId=$2&articleId=$3
insensitive match URL into $ with ^(.*)/blog/resource/([0-9]+)/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?op=ViewResource&blogId=$2&resource=$3
insensitive match URL into $ with ^(.*)/blog/static/([0-9]+)/(.+)$
if matched then set URL = $1/blog/index.php?op=Template&blogId=$2&show=$3
insensitive match URL into $ with ^(.*)/blog/([0-9]+)[/]*$
if matched then set URL = $1/blog/index.php?blogId=$2
就可以解決zeus下的簡潔網址的問題了,但是目前還有一個問題,就是資源中心内的内容無法使用了~因爲簡潔網址下資源中心的内容格式為resource/1/2,但這樣是沒辦法知道文件名的,不知道有沒有什麽好的解決辦法,不然就只能用自定義網址,然後再改rewrite規則了~