在ubuntu(12.0LTS)上安裝WordPress

請參考在ubuntu(12.0LTS)上安裝Apache+Php+Mysql+Phpmyadmin這一篇,先將LAMP的環境建置起來,在依照下方安裝wordpress:

一.下載wordpress
wordpress官方網站,抓取最新中文版本。

二.設定apache
解壓縮之後為wordpress並且複製到/srv/www目錄下
之後到/etc/apache/site-avalible下的default檔案,
將document root 改成/srv/www,servername為你的網域名稱
並且allowoverride要從none改為all
記得apache mod_rewirte要打開,再確保/srv/www下面的檔案.htaccess有如下:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>

三.打開首頁
之後輸入網址即可看到安裝畫面,即可開始安裝,按造它只是的步驟即可。