「Wordpress」以外のページ/コードで404エラーが発生する
3 回答
- 投票
-
- 2011-05-06
あなたが抱えている問題は、WordPressの書き換えシステムの動作方法にあります.WordPress .htaccessは、WordPressルートディレクトリのindex.phpファイルを介してすべてのリクエスト(index.php以外は実際には存在しません)を送信します.index.phpという名前のファイルに対してリクエストが行われると、ルートのWordPressindex.phpからも送信されます.
簡単な解決策は、/ericsinfoのindex.phpファイルの名前をdefault.phpに変更することです.ホスティングの設定によっては、それを行うだけで機能する場合があります.そうでない場合は、www.domain.com/ericsinfoからwww.domain.com/ericsinfo/default.phpへの301リダイレクトを.htaccessに追加できます
Redirect 301 /ericsinfo http://domain.com/ericsinfo/default.php
.htaccessファイルは、public_htmlまたはルートパブリックWebディレクトリにあります.
The problem your having is because of the way the WordPress rewrite system works. The WordPress .htaccess sends all requests (that dont actually exist except index.php) through the index.php file in the WordPress root directory. If any request is made for a file named index.php it will also get sent through the root WordPress index.php.
A simple solution would be to rename the index.php file in /ericsinfo to default.php. Depending on your hosting setup it might work by just doing that. If it doesn't you can add a 301 redirect to your .htaccess that points www.domain.com/ericsinfo to www.domain.com/ericsinfo/default.php
Redirect 301 /ericsinfo http://domain.com/ericsinfo/default.php
The .htaccess file will be located in your public_html or root public web directory.
-
- 2011-05-07
wp-content/themesフォルダーにあるstyle.cssを使用してテーマとして作成し、テーマをアクティブにする必要があります.そうでなければ、ワードプレスはそれを見つけることができません.
http://www.siteground.com/tutorials/wordpress/wordpress_create_theme.htm
you have to make it as a theme with a style.css in wp-content/themes folder then active the theme. Otherwise wordpress won't find it.
http://www.siteground.com/tutorials/wordpress/wordpress_create_theme.htm
-
- 2019-04-18
サブディレクトリhtaccessファイルの先頭にこの行を追加してください.
ErrorDocument401のデフォルト
Please add this line at begin of your sub-directory htaccess file.
ErrorDocument 401 default
-
** [編集]あなたの答え**と説明を追加してください:**なぜ**それが問題を解決できるのでしょうか?Please **[edit] your answer**, and add an explanation: **why** could that solve the problem?
- 1
- 2019-04-18
- fuxia
あなたが私の救世主であることを願っています.フォーラムにはこの問題を抱えている人がたくさんいるようですが、明確な答えはありません.これが私の苦境です:-
新しいホスティングに新しいWordpressサイトをまとめたところですが、それはおもしろいです.私はそれがどれほど涼しいかで月を越えています.ただし、以前の(Wordpress以外の)ホスティングでは、メインから離れたルートのフォルダーに座っている顧客向けの小さな注文システムがありました.独自のindex.phpがあり、www.domain.com/ericsinfo
にアクセスしてアクセスできます.フォルダを新しいホスティングに移動し、以前と同じようにルートに配置しましたが、www.domain.com/ericsinfoにアクセスすると、Wordpress内で404エラーが発生します. www.domain.com/ericsinfo/index.phpと入力しても、Wordpress404です.
.htaccessファイルを編集する必要があることを読みましたが、テンプレートにファイルがないようで、何かを壊さない限り、他の人が推奨するコードを使用して作成したくありません.
Wordpressが404プロセスを引き継ぐのは非常にクールであり、完全に消えてほしくないことがわかります.以前と同じように注文システムを使用できるようにしたいだけです.
私はあなたの助けに永遠に感謝します!
マット