问题在于:
我有一个wordpress项目,它将是前端站点(所以http://my-site.com/需要指向wordpress index.php)然后必须使用指向magento index.php的http://my-site.com/shop/访问magento。
我无法弄清楚如何编写.htaccess和vhost文件。
在我之前的尝试中,如果我去/ shop /
,wordpress似乎处理所有路线并抛出404谢谢。
答案 0 :(得分:0)
你可以添加你的wordpress .htaccess文件,如下所示
## 301 Redirect Entire Directory
RedirectMatch 301
http://my-site.com/shop(.*)
http://my-site.com/shop/index.php/$1
希望这对您有所帮助。