Wordpressのパーマリンク設定がうまく行かない
不具合がお分かりになる方いらっしゃいましたら、教えてください。
朝から困り果てております。
Wordpressの設置について教えてください。
サーバーは借りています、iSLEで。
http://home.isle.ne.jp/support/index.html
Windows Hosting Suiteというプランです。
******.jp/wordpress/ へWordpressをインストールを行いました。
Wordpressのパーマリンクを下記の形で運用をしたいと考えております。
******.jp/%category%/%postname%/
Wordpressのブログのアドレスを http://******.jp
パーマリンク設定を /%category%/%postname%/ に設定して
wwwrrotへ「index.php」と「.htaccess」を設置しましたが、真っ白の画面しか出てきません。初歩的なことで申し訳ありません。解決方法を教えて頂ければと思います。
下記は、index.phpと.htaccessの中身です。
■↓index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */ require('./wordpress/wp-blog-header.php');
?>
■↓.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress