静的なサイトのスタンドアロンブログとして機能するワードプレスブログをインストールしました。ブログは終了し、表示するとすべて正常に表示されます....パーマリンク(単一の投稿を表示するため)をクリックするまで。クリックすると、ユーザーはホームページにリダイレクトされます。htaccessファイルがこれを引き起こしていると思います。ブログサイトhttp://nathantrotter.com/blog/を表示して、これを試すことができます。
これが私のhtaccessファイルです(サイトのルートディレクトリから、wpブログディレクトリにはファイルがありません)...ブログのパーマリンクを機能させるために別の行を作成する必要がありますか?もしそうなら、何ですか?
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^admin$ admin/index.php
RewriteRule ^products/([A-Za-z0-9_-]+)$ /index.php?p=products&metal=$1
RewriteRule ^services/([A-Za-z0-9_-]+)$ /index.php?p=services&sub=$1
RewriteRule ^about/([A-Za-z0-9_-]+)$ /index.php?p=about&sub=$1
RewriteRule ^facilities/([A-Za-z0-9_-]+)$ /index.php?p=facilities&sub=$1
RewriteRule ^press/([0-9]+)/([A-Za-z0-9_-]+)$ /viewPress.php?id=$1
RewriteRule ^([A-Za-z0-9_-]+)$ /index.php?p=$1