Discuz x2 配置伪静态apache htaccess

[摘要]Discuz x2伪静态困扰了许多站长,官方迟迟不给出来办理方案,亏得有热心站长连续宣布了靠得住的办理步伐,本篇先容Discuz x2在apache处事器中htaccess的伪静态法则编写。

  Discuz x2.0的宣布引起万千站长猖獗下载进级利用,而大大都站长,在进级或新安装后,都发明Discuz x2.0的伪静态不生效,小编通过汇集相关资料,发明这是官方宣布Discuz x2.0时留下的一个BUG,只要通过小小的修改就能实现伪静态了。

首先要将这个BUG办理先,打开../source/function/function_core.php这个文件。

查找代码:

$_G['setting']['output']['preg']['search'] = str_replace('\{CURHOST\}', preg_quote($_G['siteurl']), $_G['setting']['output']['preg']['search']);

换成:

$_G['setting']['output']['preg']['search'] = str_replace('\{CURHOST\}', preg_quote($_G['siteurl'], 'http://down.chinaz.com/'), $_G['setting']['output']['preg']['search']);

然后把下面的代码生存为.htaccess文件放于网站根目次:

# 将 RewriteEngine 模式打开
RewriteEngine On

# 修改以下语句中的 /discuz 为你的论坛目次地点,假如措施放在根目次中,请将 /discuz 修改为 /
RewriteBase /

# Rewrite 系统法则请勿修改
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^topic-(.+)\.html$ portal.php?mod=topic&topic=$1&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^article-([0-9]+)-([0-9]+)\.html$ portal.php?mod=view&aid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^forum-(\w+)-([0-9]+)\.html$ forum.php?mod=forumdisplay&fid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^group-([0-9]+)-([0-9]+)\.html$ forum.php?mod=group&fid=$1&page=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^space-(username|uid)-(.+)\.html$ home.php?mod=space&$1=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^blog-([0-9]+)-([0-9]+)\.html$ home.php?mod=space&uid=$1&do=blog&id=$2&%1
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^archiver/(fid|tid)-([0-9]+)\.html$ archiver/index.php?action=$1&value=$2&%1Discuz x2下载

Discuz! X2 R20120628 简体GBK下载

Discuz x2 设置伪静态apache htaccess

界面预览

分享到

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/10682.html