WordPress Permalinks Does Not Work in xampp Setup WordPress PermalinksはXAMPPのセットアップが機能しない
xampp provides a convenient way to quickly and easily install and setup a web server that works without much configuration. XAMPPのでは、便利な方法を迅速かつ容易にインストールし、セットアップをウェブサーバーに作品を多く設定します。 However, permalinks feature won’t work with the default installation of xampp, even though you can properly customize the permalinks structure to create the .htaccess file.しかし、 permalinksの機能は動作しないのXAMPPのデフォルトのインストールにもかかわらず、適切にすることができます。 permalinksをカスタマイズして構造体を作成する。 htaccessファイルです。
When you click on any permalinks, your WordPress blog will return a 404 error instead, saying the post not found.をクリックして任意のpermalinksを使用するときに、あなたのWordPress Blogが404エラーを返す代わりに、と言って、ポストが見つかりませんでした。 Instead, you can only access your blog posts via default permalinks structure, which is in the form of http://www.mydigitallife.info/?p=123.その代わりに、ブログの投稿することができます。経由でのみアクセスしてください。デフォルトのpermalinks構造、これはという形でhttp://www.mydigitallife.info/?p=123です。
This is because in xampp, mod_rewrite is not enable by default.これはXAMPPのために、デフォルトで有効にmod_rewriteのではない。 Beside, AllowOverride directive in Apache configuration file is also set to None by default, causing Apache web server to ignore any .htaccess file, which used to rewrite the permalinks to the post’s actual url.横に、 allowoverrideディレクティブをapacheの設定ファイルもなしに設定されデフォルトでは、任意の原因とApache Webサーバを無視する。 htaccessファイルを書き換えるのpermalinksを使用して、ポストの実際のURLです。
To use permalinks in WordPress that installed on xampp-based server, edit the httpd.conf that locates in C:\Program Files\xampp\apache\conf directory (folder).を使用するXAMPPのpermalinksのはWordPressベースのサーバーにインストールされ、その場所を突き止め、 httpd.confの編集するにはC : \ Programファイル\ XAMPPの\ Apacheの\ confディレクトリ(フォルダ)です。 Open httpd.conf in any text editor, search for “mod_rewrite”. httpd.confには、任意のテキストエディタで開いて、検索を" mod_rewriteの"です。 You should come to a line like this:行する必要が来るようにして下さい:
#LoadModule rewrite_module modules/mod_rewrite.so # LoadModuleへrewrite_moduleモジュール/ mod_rewrite.so
Remove the hash sign (#) from the line.削除してシャープ記号( # )からのラインです。 The # indicates the line is not in effect. #ラインではないが効果を示しています。 The changed line should looks like this:変更行は次のようになります:
LoadModule rewrite_module modules/mod_rewrite.so LoadModuleへrewrite_moduleモジュール/ mod_rewrite.so
After that, search for “AllowOverride”.後に、検索を" allowoverride "です。 You will come to a line like this:あなたが来るようにして行:
AllowOverride None allowoverrideなし
If the above line is contained within default directory (mean the directory declaration is just上記の行が含まれる場合は、デフォルトのディレクトリ(ディレクトリを意味する宣言ではわずか
AllowOverride Allすべてのallowoverride
Restart the Apache.は、 Apacheを再起動します。 Permalinks is working after restart. permalinksとは、作業後に再起動します。
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。
Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。
Related Articles関連記事
- Easily Set Up Web Server with XAMPP XAMPPのウェブサーバーを簡単にセットアップする
- Enable MySQL InnoDB Storage Engine Support in XAMPP Installation MySQLのInnoDBストレージエンジンのサポートを有効にXAMPPインストール
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags SupportダウンロードのWordPress 2.3のリリース候補1 ( rc1 )にタグをサポート
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working paginatingまたは分割WordPressのページに投稿したりnextpageにWordPressが機能しない
- Download Previous or Old Version of WordPressダウンロードの前または古いバージョンのWordPress
- Tag Managing Thing Plugin for WordPress 2.3 or AboveタグのWordPress 2.3のプラグインを管理する以上のもの
- Integrate WordPress including Comments with bbPress Forum using bbSync bbpress WordPressのフォーラムを含む統合を使用してコメントをbbsync
- How to Move WordPress Blog to New Domain or Location WordPressのブログに移動する方法を新しいドメインまたは場所
- WordPress 2.1.1 Critical Security Alert - Download Upgrade to 2.1.2 WordPressの2.1.1の重要なセキュリティの警告-2 .1.2にアップグレードしてダウンロード
- Must Have WordPress Plugins WordPressの差込必要があります。
















August 15th, 2008 04:59 2008年8月15日04:59
Thanks A LOT!どうもありがとう! Works great!作品すごい!