WordPress Permalinks in IIS |
2006/06/30 ~ 阿亮 ~ |
最近也在我的電腦弄個 WordPress,做為測試環境,在 hosting 處,加個 .htaccess 就可以做 Permalinks ,雖然說另外架個 apache 也可以解決,但我還是習慣在 Windows 上跑 IIS 就好,不想在個人電腦上跑兩個 web server。
這是在 Apache下,加上 .htaccess ,內容如下即可。 (這是使用 mod_rewrite 的)
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
在 IIS 下沒有 mod_rewrite,在這裡 找到例子,有點不好弄。
1. 到 WordPress 後端,設定 Options/Permalinks 成下面,一定要用 Custom 方式指定有 /archives/ 的,不要指定「Date and name based」的。
Structure: /archives/%year%/%monthnum%/%day%/%postname%/
Category Base: /archives/category
2. 下載該網頁提供的檔案
原理是用 error: 404 時,導到 /errorpage.asp,然後用 XMLHTTP 來抓網頁,再呈現出來。
3. 到 IIS 的 Properties -> Custom Errors-> 404, 將訊息指到 URL Type,網址則是 /errorpage.asp
4. errorpage.asp 有兩個地方要改,
Dynamic = False ‘(原來為 True)
Response.Charset= “big5”
我的 blog 是 utf-8,不知為什麼經由 XMLHTTP 處理會變成 big5,最後在 utf-8 下就會變亂碼? 我只是要在 Windows 下建立一個測試平台,我就將就地用了。
備份乙份在此: My Permalinks Backup