Magento 404 ページを変更する
Magento にはデフォルトの 404 ページがあります。404 ページをカスタマイズしたい場合、どうすればよいでしょうか?
方法 1
まず、デフォルトの 404 ページを見てみましょう:
1. Magento の CMS 部分では、エラー ページを定義して変更できます。バックエンド管理者->CMS-> にログインします。ページ:
2. 404 Not Found ページを開き、左側の [コンテンツ] をクリックすると、404 ページの詳細が表示されます:
3. 次に、404 ページを再定義します。たとえば、次のコードを入力します。
<code><div> <h3>D'oh! That page can't be found.</h3> <p><strong>Don't get angry, and don't cry.</strong> Let us take that burden. It's not your fault. No, really, listen to me. It's not your fault. We have a 24 hour hotline to deal with things just like this. Okay, its not really a hotline, its really just some encouraging words to keep trying, but hotline sounds so much .</p> <p>Sorry but the page you are looking for cannot be found. If you're in denial and think this is a conspiracy that cannot possibly be true,</p> </div> <dl> <dt>Perhaps you are here because:</dt> <dd> <ul> <li>The page has moved</li> <li>The page is no longer exists</li> <li>You were looking for your puppy and got lost</li> <li>You like 404 pages</li> </ul> </dd> </dl> <dl> <dt>What can you do?</dt> <dd>Have no fear, help is near! There are many ways you can get back on track with Magento Demo Store.</dd> <dd> <ul> <li><a href="#">Go back</a> to the previous page.</li> CMS and Design 30 <li>Use the search bar at the top of the page to search for your products.</li> <li>Follow these links to get you back on track!<br /><a href="/">Store Home</a><br /><a href="/customer/account/">My Account</a></li> </ul> </dd> </dl></code>
4. ページを保存をクリックして再度開くと、404 ページが変更されていることがわかります。
方法 2
方法 1 は、バックグラウンドで構成を変更することです。また、404 ページの変更は、テンプレートを変更することによっても変更できることを知っておく必要があります。
1. まず、CMS で 404 Not Found のステータスを無効に変更します。
2. no-route.phtml ページを見つけます。パスは app/design/frontend/base/default/
template/cms/default/no-route.phtml で、それを開くと、次のコードが表示されます。
<code>There was no 404 CMS page configured or found.</code>
以上、Magento?で404ページをカスタマイズする方法を紹介しました。 、関連コンテンツも含めて、PHP チュートリアルに興味のある友人に役立つことを願っています。