How do I remove index.php from the URL in Magento

前端 未结 5 1385
予麋鹿
予麋鹿 2020-12-06 19:36

How can i remove index.php from the URL in Magento.

For example the home page URL is: www.mydomain.com/index.php

I want to show

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-06 20:08

    You can remove the index.php in the frontend URLs performing the following steps:

    Go to the admin section of Magento.

    In System -> Configuration -> Web -> Search Engines Optimizations, select YES.
    

    Clear cache now see its work. if any case do notwork go to ftp

    find the file in your root .htaccess

    check this line it should be comment for example

    RewriteBase/magento/
    

    Replace with this code.

    #RewriteBase /magento/
    

提交回复
热议问题