我想要做的就是格式化我的产品网址:
site.com/id-product-name/
使用我的.htaccess到目前为止我有这个:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([0-9a-zA-Z]+)-[^/]+\.html$ /service.php?serviceId=$1 [QSA,L]
这会附加" .html"到每个产品的最后,哪个效果很好,但我更喜欢最后的斜杠,如上所示,我尝试过:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([0-9a-zA-Z]+)-[^/]+\/$ /service.php?serviceId=$1 [QSA,L]
但这不起作用,我可能会遗漏一些小事,任何帮助都会受到赞赏!