使用 htaccess 文件获得漂亮的 URL - Opencart

发布于 2024-12-06 20:57:33 字数 326 浏览 2 评论 0原文

如果我的 opencart 主页是 http:// /www.stico.com.my/index.php?route=product/category&path=20_59 ,我希望网址是这样的 http://www.stico.com.my

我的客户希望将页面产品类别设置为主页。 我希望有人能帮助我。

how to write htaccess if my opencart home page is http://www.stico.com.my/index.php?route=product/category&path=20_59 , i want url to be like this
http://www.stico.com.my

My client want page product category set as homepage.
i hope someone can help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

jJeQQOZ5 2024-12-13 20:57:33

将其添加到现有 RewriteRules 下方的 .htaccess

RewriteCond %{QUERY_STRING} =""
RewriteRule ^index.php$ index.php?route=product/category&path=20_59 [L]

可选,如果您想要漂亮的 URL

您应该能够使用 SEO URL 为您的产品获取漂亮的 URL。

管理员>系统>设置>编辑 YOUR_STORE >服务器:
确保选中“使用 SEO URL”,并确保 htaccess.txt 文件已重命名为 .htaccess。

Add this to your .htaccess below the existing RewriteRules

RewriteCond %{QUERY_STRING} =""
RewriteRule ^index.php$ index.php?route=product/category&path=20_59 [L]

Optional, if you want Pretty URLs

You should be able to use SEO URLs to get pretty URLs for your products.

Admin > System > Settings > Edit YOUR_STORE > Server:
Make sure Use SEO URLs is checked and make sure the htaccess.txt file has been renamed to .htaccess.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文