我在外部网站上有以下href:
<a href="http://localhost/example/magento/catalog/product/view/id/175">
当我直接在浏览器中输入它时,它会转到正确的页面但是当我反映它时,它会转到示例/ magento。
为什么会这样?
答案 0 :(得分:0)
You need to open your .htaccess file from the root and do the below method:
############################################
## you can put here your magento root folder
## path relative to web root
RewriteBase /
RewriteRule ^articles.*$ index.php [L,R=301]
############################################
Hope this will resolve your solution.