我已经开发了magento site我只是想从URL中删除index.php而我通过在.htaccess
RewriteEngine On<br/>
RewriteBase /<br/>
RewriteRule ^index\.php$ - [L]<br/>
RewriteCond %{REQUEST_FILENAME} !-f<br>
RewriteCond %{REQUEST_FILENAME} !-d<br>
RewriteRule . /index.php [L]
但是,当我尝试点击https://tumree.com/index.php时,该网站是可见的 在SEO中,不应该在URL中重复。这两个网址正在编制索引,但并不好。
请帮我解决问题...