詳しく調べてないが、ちょっとメモ。
環境
- CPI シェアードプランZZ-01
- wordpress 3.8.1
- contactform7 3.7.2
入力されたものが「???」になってしまう。
修正方法
結果からいうと、index.php と .htaccess を修正するだけです。
まずは、index.phpを修正
define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );
を
define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require('./wp/wp-blog-header.php' );
に、変更。
次に、.htaccess。
AddHandler x-httpd-php528 .php suPHP_ConfigPath /home/ユーザーID/html/ <Files ~ "^(\.htaccess|\.htpasswd|php\.ini|.*\.sql|.*\.log|.*\.cron|.*\.inc|.*\.phps|.*\.yml)$">
2行目
AddHandler x-httpd-php528 .php suPHP_ConfigPath /home/ユーザーID/html/wp/ <Files ~ "^(\.htaccess|\.htpasswd|php\.ini|.*\.sql|.*\.log|.*\.cron|.*\.inc|.*\.phps|.*\.yml)$">
.htaccessをいじるのでもしかしたら、パーマリンク設定をし直さないと、404エラーが出てしまうかもしれません。
ご参考までに。