Re: サイトの引っ越しでエラー

2012年12月19日 at 15:46

プリティURLの問題でした!
ありがとうございます。正常に動いています。
.htaccess は下記のとおりに書きました。

php_value default_charset UTF-8
php_value mbstring.language neutral
php_value mbstring.internal_encoding UTF-8

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule ^(.*)$ index.php?pathinfo=$1 [L]
</IfModule>