Serene Bach から移行
正直めんどい
- Movable Type テキストログ形式でエクスポート
- MT にインポート (MySQL データベースへ)
- MT to Nucleus conversion で Nucleus にインポート
トップページのみ meta description を埋め込む
- head.inc
```
<%if(skintype,index)%>
<%endif%>
## プラグイン
### 使用中
* NP_Moblog
* NP_TextWiki
* NP_SkinFiles
* NP_MultipleCategories
* NP_ShowBlogs
* NP_HashedHost
* NP_Thumbnail
* NP_Lightbox
* NP_StripBR
* NP_Pickup
* NP_FileProperty
* NP_ItemNaviEx
* NP_Lastmod
* NP_RecentItems
* NP_MediaFiles
* NP_Blacklist
* NP_TrackBack
* NP_SlimStat
* [備忘日記 » NP_SlimStat日本語版(for nucleus)](http://blog.bitocean.net/?itemid=69)
* NP_ImpExp
## FancyURL on さくらのレンタルサーバ
* [チョー簡単な FancyURL 実現方法 » つぶやき。もしくは独り言。](http://shizuki.kinezumi.net/item_278.html)
* [さくらインターネットにnucleus(blog系CMS)でfancyURLを使う方法を考えてみる - ぎじゅっやさん](http://hain.jp/index.php/tech-j/2007/05/28/%E3%81%95%E3%81%8F%E3%82%89%E3%82%A4%E3%83%B3%E3%82%BF%E3%83%BC%E3%83%8D%E3%83%83%E3%83%88%E3%81%A7fancyURL)
* ↑を参考に、どんなパスを入れても index.php が呼び出されてしまう (404 とか出ない) のをなんとかしたかったので↓
* .htaccess
RewriteEngine on
RewriteOptions MaxRedirects=1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(item|archive|member|archives|category|blog|special|subcatid|page)/(.*)$ /index.php?p=$1/$2 [L,QSA]
* NP_MultipleCategories と NP_ShowBlogs が入ってるので subcatid と page を追加しています
* index.php
<?php
// This file will generate and return the main page of the site
if(isset($_GET[‘p’]))
{
$_SERVER[‘PATH_INFO’] = $_GET[‘p’];
}
$CONF = array();
$CONF[‘Self’] = ‘’;
include(‘./config.php’);
selector();
?>
```