Magento는 404 페이지를 수정합니다
Magento에는 기본 404 페이지가 있습니다. 404 페이지를 사용자 정의하려면 어떻게 해야 합니까?
방법 1
먼저 기본 404 페이지를 살펴보겠습니다.
1. Magento의 CMS 부분에서 오류 페이지를 변경할 수 있습니다. 이를 정의하여 백엔드 관리자->CMS->페이지:
에 로그인합니다. 2. 404 찾을 수 없음 페이지를 열고 왼쪽에서 콘텐츠를 클릭하면 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>
3. 첫 페이지를 다시 열어 위의 코드 내용과 일치하는지 확인하세요.
4. 여기에서 템플릿 파일을 수정하여 404 페이지를 수정할 수 있습니다.
위 내용은 Magento에서 404 페이지를 사용자 정의하는 방법을 소개합니다. , 관련 내용을 포함하여 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.