我在Joomla的VirtueMart工作,对于产品,它需要在URL末尾添加后缀(现在设置为-view,http://domain.com/store/category/product-name-view)。
我试图重写它以便它http://domain.com/store/category/product-name/view/。应该很简单,但它给了我一个404.
button.setText("Your Text Here")
注意:如果我将规则更改为:
RewriteRule ^(.*)/view/?$ $1-view/ [NC,L]
它会通过/ view /最后一个页面重定向到Google,因此它正确选择,但它不会正确重写。有什么提示吗?