我是 Magento 和 Apache conf 的新手。我正在使用 Magento 1.8.0。我已经配置了路径,以便从我的页面的 URL 中删除 index.php,例如从
/magento/index.php/electronics/cell-phones.html
至
/magento/electronics/cell-phones.html
但是,我的浏览器请求现在直接发送到我的服务器根目录的 index.php。如图所示,我已尝试为 magento 添加配置部分,但没有更改。我究竟做错了什么?
<Directory "C:/hiddenpath/apache2/htdocs/magento">
Options All
AllowOverride All
Order allow,deny
Allow from all
Deny from none
</Directory>