Linux主机下DZ伪静态的设置方法

DZ的伪静态设置比Wordpress的永久链接要麻烦一点,不过也不难,请看:

一、确定你的主机支持Rewrite,并支持站点目录中.htaccess的解析。

二、检查论坛所在目录中是否存在 .htaccess 文件,如果不存在,请手工建立此文件。
注意:Win32 系统下,无法直接建立 .htaccess 文件,您可以从其他系统中拷贝一份。

三、编辑并修改 .htaccess 文件,添加以下内容

# 将 RewriteEngine 模式打开
RewriteEngine On

# 修改以下语句中的 /discuz 为你的论坛目录地址,
如果程序放在根目录中,请将 /discuz 修改为 /
RewriteBase /discuz

# Rewrite 系统规则请勿修改
RewriteRule ^archiver/([a-z0-9\-]+\.html)$ archiver/index.php?$1
RewriteRule ^forum-([0-9]+)-([0-9]+)\.html$ forumdisplay.php?fid=$1&page=$2
RewriteRule ^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ viewthread.php?tid=$1&extra=page\%3D$3&page=$2
RewriteRule ^profile-(username|uid)-(.+)\.html$ viewpro.php?$1=$2
RewriteRule ^space-(username|uid)-(.+)\.html$ space.php?$1=$2

技巧提示:
如果不能编辑.htaccess文件,只要新建文本文件如1.txt,将以上代码拷至文本中,利用FTP将这个文本文件上传至空间目录中,然后在FTP软件中Rename为“.htaccess”就可以了。

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Captcha Code