关于弹性web通过htaccess 设置404,求帮助
回 1楼dongshan8的帖子
谢谢!
但是我写的那个文件 ,在前台是不能展示,是哪里写错了?
-------------------------
Re回 3楼dongshan8的帖子
#404错误ErrorDocument 404 /404.html # 将 RewriteEngine 模式打开RewriteEngine On# 在以下语句中的 RewriteBase / 后边添加你论坛目录地址,例如:RewriteBase /bbs,如果程序放在根目录中,则不用修改。RewriteBase /# Rewrite 系统规则请勿修改RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ plugin.php?id=$1:$2&%1# 其他插件规则建议放在这上边RewriteCond %{QUERY_STRING} ^(.*)$RewriteRule ^yuzhe_page-(.+)\.html$ plugin.php?id=yuzhe_page&action=$1&%1就是这些。
我在预览中能看到,但是在前台随便输入一个,还是显示不出来。不知道是哪里没设置好还是怎么了
-------------------------
Re回 5楼dongshan8的帖子
感谢您提供的第二个链接,很详细。
谢谢您的帮助。
还有一个问题,需要咨询您:
IndexIgnore *Options All -Indexes
选择所以,
这个添加与不添加,都会实现跳转。
那么,添加的好处在哪里呢?
是为了实现更好的优化吗?还是出于别的因素的考虑呢?
赞0
踩0