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

前端 未结 5 1383
予麋鹿
予麋鹿 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:29

    EX: Your Site URL is: http://localhost/my_site/demo1/

    Then add this to (or create) .htaccess (/my_site/demo1/.htaccess)

    RewriteEngine On
    RewriteBase /my_site/demo1/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /my_site/demo1/index.php [L]
    

提交回复
热议问题