Home > Article > CMS Tutorial > How to remove index.php in ecshop
ecshop method to remove index.php: First open the website root directory and find index.php; then change "ecs_header("Location: $Loaction\n");" to "ecs_header("Location:.. .");" is enough.
The operating environment of this article: Windows 7 system, ecshop version 4.0, DELL G3 computer
ECSHOP mall optimization removes the index.php suffix Display method
ECSHOP mall optimization removes the index.php suffix display method. ECSHOP defaults to clicking on the homepage, for example: http://www.ecshop119.com/index.php. This suffix is not conducive to SEO optimization. So ECSHOP Tutorial Network today explains how to remove this index.php
Open the root directory of the website and find index.php:
if (!empty($Loaction)) { ecs_header("Location: $Loaction\n"); exit; }
Put:ecs_header("Location: $Loaction\n ");
Change to: ecs_header("Location: http://www.ecshop119.com");
Test the effect and open: http: //www.ecshop119.com/index.php Is there no index.php directly?
Recommended: "ECShop Tutorial"
The above is the detailed content of How to remove index.php in ecshop. For more information, please follow other related articles on the PHP Chinese website!