我需要一些关于产品详细信息页面链接中的错误的帮助。 我遇到的问题是,当我点击任何产品时,我会发回主产品页面。我已经阅读了我能找到的所有留言板,似乎无法解决问题。使用我读过的内容,我将其缩小到.htaccess。任何帮助将非常感谢!
RewriteEngine On
RewriteRule ^products/$ products/products.php
RewriteRule ^products/([0-9]+)/$ products/product.php?id=$1
RewriteRule ^receipt.php$ receipt/ [R=301]
RewriteRule ^contact.php$ contact/ [R=301]
RewriteRule ^products.php$ products/ [R=301]
RewriteRule ^(products/products.php[0-9]+)$ /$1/
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^product.php$ products/%1/?
答案 0 :(得分:0)
我不知道您的网址结构或产品页面的链接(如果您想了解网址和htaccess组合会发生什么情况,这一点至关重要。)
更容易使用像http://htaccess.mwl.be/这样的在线htaccess检查程序。这允许您插入htaccess(或其中的一部分)和收入URL(您的产品URL)并查看结果。您可以根据这个问题来决定是否存在问题并尝试修复/调整它