用了3年多Wordpress了,今天終於換成了typecho。總體使用感覺非常滿意,前台後台非常簡潔,速度很快,用著除了爽還是爽。
下面簡單說一下從Wordpress轉換typecho方法:
enjoy it!
Nginx下typecho rewrite規則:
location / { index index.html index.PHP; if (-f $request_filename/index.html){ rewrite (.*) $1/index.Html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){ rewrite (.*) /index.PHP; }}