石油人 - 2008-6-28 21:54:00
Server Error in '/' Application.
--------------------------------------------------------------------------------
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /aspx/1/topictag-3.aspx
戏水 - 2008-6-28 22:15:00
请给我个可用的帐号 我前去测试。 我注册了一个 貌似不让发帖。
xj79222770 - 2008-6-28 23:40:00
同样的问题呀
czsky - 2008-7-20 17:30:00
从有标签开始就存在这个问题,到现在好像还没解决啊。
我来带走你 - 2008-7-20 19:37:00
404.这个记录下来吧。
czsky - 2008-7-26 18:54:00
出现这个错误以后,你去aspx/1目录里查找topictag-?.aspx,没有这个文件,难怪会报“The resource cannot be found.”的错误,但问题是到现在为止,还没有处理方法。
tintown_liu - 2008-8-27 11:16:00
我也发现这个问题,2.5版本里的标签就是有这样的问题。
这其实是就是UrlRewrite的问题。象这种topictag-?.aspx的页面已经是经过URLreWrite了。但是不明白,怎么后缀还是aspx呢?在后台设置里全部改为html了,但是这个没有改过来,这就是BUG。
而且在UrlReWrite的规则文件中也没有这个topictag的标签。
但我发现discuzNT这个官方论坛上可以解释topictag-?.aspx,这只能说明他们在规划则添加了这个转换。
但就算可以吧,我还是认为应该要转为html才是最好的方式!!!BUG还是需要修正的!!
tintown_liu - 2008-8-27 11:19:00
看现在这份规划里的最后一条就是补进去的!!
RewriteRule ^(.*)/userinfo-([0-9]+)\.html$ $1/userinfo.aspx?userid=$2
RewriteRule ^(.*)/showforum-([0-9]+)\.html$ $1/showforum.aspx?forumid=$2
RewriteRule ^(.*)/showtopic-([0-9]+)\.html$ $1/showtopic.aspx?topicid=$2
RewriteRule ^(.*)/showforum-([0-9]+)-([0-9]+)\.html$ $1/showforum.aspx?forumid=$2&page=$3
RewriteRule ^(.*)/showtopic-([0-9]+)-([0-9]+)\.html$ $1/showtopic.aspx?topicid=$2&page=$3
RewriteRule ^(.*)/archiver/showforum-([0-9]+)\.html$ $1/archiver/showforum.aspx?forumid=$2
RewriteRule ^(.*)/archiver/showtopic-([0-9]+)\.html$ $1/archiver/showtopic.aspx?topicid=$2
RewriteRule ^(.*)/archiver/showtopic-([0-9]+)-([0-9]+)\.html$ $1/archiver/showtopic.aspx?topicid=$2&page=$3
RewriteRule ^(.*)/archiver/showforum-([0-9]+)-([0-9]+)\.html$ $1/archiver/showforum.aspx?forumid=$2&page=$3
RewriteRule ^(.*)/tools/rss-([0-9]+)\.html$ $1/tools/rss.aspx?forumid=$2
RewriteRule ^(.*)/tools/spacerss-([0-9]+)\.html$ $1/tools/rss.aspx?uid=$2&type=space
RewriteRule ^(.*)/tools/photorss-([0-9]+)\.html$ $1/tools/rss.aspx?uid=$2&type=photo
RewriteRule ^(.*)/space\/((\w|\s)+)((\/?))?$ $1/space/index.aspx?user=$2
RewriteRule ^(.*)/space\/((\w|\s|-)+)((\/?))?\?((.*)+)$ $1/space/index.aspx?user=$2&$6
RewriteRule ^(.*)/sitemap_baidu.xml $1/tools/sitemap.aspx
RewriteRule ^(.*)/showdebate-([0-9]+)\.html$ $1/showdebate.aspx?topicid=$2
RewriteRule ^(.*)/showdebate-([0-9]+)-([0-9]+)\.html$ $1/showdebate.aspx?topicid=$2&page=$3
RewriteRule ^(.*)/topictag-([0-9]+)\.aspx$ $1/tags.aspx?tagid=$2
最后这一条看来是补上来的。但我想这个修正是不完全的。最好的是要修改TAG上的连接地址要换成html的。采用topictag-11.html这样的方式。
另外,聚合上的推荐的“论坛”也有同样的问题,就是替换Url时,没有换成html,而是用aspx了。
希望官方能修改这些BUG!!
tintown_liu - 2008-8-27 11:21:00
还有,博客空间的帖子没有进行静态化。我觉得这个非常不好。希望官方能进行静态化为html的。
tintown_liu - 2008-8-28 14:11:00