관리-도구
편집 파일: page_not_found.php
<?php /** * Handler for page not found errors * * Generates a 301 Moved permanently error and redirects to index.php?main_page=page_not_found * Especially useful as for Google indexing * * @copyright Copyright 2003-2022 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: DrByte 2020 Jul 10 Modified in v1.5.8-alpha $ */ /* * redirect to the page_not_found page after sending spiders the "moved" message */ header("HTTP/1.1 301 Moved Permanently"); header("Location: index.php?main_page=page_not_found"); ?>