を使用しようとしpermalink feature
てWordPress
いたので、 をクリックしたときlocalhost
のコードをコピーしました。生成されたコードを localhost に保存しました。ファイルは の名前で保存されていましたが、ページにアクセスしようとすると、 の URL バーが.Onlyになります。誰かがここで間違っている部分を教えてもらえますか?generated by WordPress
post name from Common Settings
wordpress index.php
.htaccess
browser is showing the full address of the post
post can not be seen on the browser
404 Not Found error is comming
質問する
11713 次
1 に答える
10
ローカルホスト サーバー用にこのファイルを wordpress に書き込ませる必要があります。
別のサーバーから単純にコピー.htaccess
して動作することを期待することはできません。サーバーの設定を反映するように変更する必要があります。
RewriteBase
および最後のを変更する必要がありますRewriteRule
。たとえば、次の場合http://localhost/wordpress
:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
于 2012-09-11T08:49:20.090 に答える