CORESERVERでfreoを使う方法

これは古い記事です。

公式サイトの .htaccess だけでは動作しない場合、以下のファイルを作成しアップロードすると動作するかもしれません。

php.ini

## UTF8を標準の文字コードとする
mbstring.language = Japanese
mbstring.internal_encoding = UTF-8
mbstring.http_input = auto
;mbstring.http_output = UTF-8
mbstring.detect_order = auto

参照:http://sb.xrea.com/showthread.php?t=10744

.htaccess

AddHandler application/x-httpd-phpcgi .php
mod_gzip_on Off

DirectoryIndex index.php index.html
<IfModule mod_rewrite.c>
     RewriteEngine On
     RewriteCond %{REQUEST_FILENAME} !-f
     RewriteCond %{REQUEST_FILENAME} !-d
     RewriteRule (.*)$ index.php?pathinfo=$1&%{QUERY_STRING}
 </IfModule>

参照:http://www.coreserver.jp/help/index.php/phpcgi/
http://freo.jp/setup/trouble/coreserver.html
http://freo.jp/document/customize/mod_rewrite.html