薇曉朵之前釋出的 SEO 最佳化,受到廣大網友的關注和支援。現在有網友問我們的專題是如何實現目錄化的,今天特在此向大家公佈方法:

新手知識:如何為 Discuz! X2 配置偽靜態

步驟一:

進入網站後臺-全域性-SEO 設定-URL 靜態化

在 「門戶專題頁」 格式裡填寫:

special/{name}/

步驟二:
根據不同的主機選擇相應的方法
Apache Web Server(獨立主機使用者)
-----------------------------------------------------------------
開啟.htaccess 檔案
加上:

RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)/special/(.+)/$ $1/portal.php?mod=topic&topic=$2&%1

-----------------------------------------------------------------

Apache Web Server(虛擬主機使用者)
-----------------------------------------------------------------
開啟.htaccess 檔案

加上:

RewriteCond %{QUERY_STRING} ^(.*)$

RewriteRule ^special/(.+)/$ portal.php?mod=topic&topic=$1&%1 [L,NC]

-----------------------------------------------------------------

IIS Web Server(獨立主機使用者)
-----------------------------------------------------------------

開啟 Rewrite.dll 檔案

加上:
RewriteRule ^(.*)/special/(.+)/(?(.*))*$ $1/portal.php?mod=topic&topic=$2&$4

----------------------------------------------------------------

Nginx Web Server
-----------------------------------------------------------------

rewrite ^([^.]*)/special/(.+)/$ $1/portal.php?mod=topic&topic=$2 last;

----------------------------------------------------------------