我正在使用安装在 /products 子目录中的 OpenCart 1.5.4。我在根目录中安装了一个 wordpress 站点。我将它们的皮肤相同,因此它看起来像同一个站点。
我想重写主页链接的所有实例(尤其是面包屑)以转到我的根目录(而不是我的 OC 安装所在的子目录 (/products))。
根据一些研究,我了解到最好的方法是在 HTACCESS 文件中。我对操作 htaccess 文件非常陌生。标准 htaccess 文件具有以下重写规则:
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
如何添加规则以更改主页链接:
www.myurl.com/products/index.php?route=common/home
至:
www.myurl.com/
最后,在当前安装中,此文件称为 .htaccess.txt。我是否必须从服务器中删除此文件,删除 .txt 并上传名为 .htaccess 的文件才能使其正常工作?