Appracate 任何人都可以为此提供的帮助,
我有一个旧的 url 结构:产品/类别(类别是动态的,仅用作示例)并且我正在尝试更改为类别/产品,为此我使用了
RewriteRule ^(.*)/products index.php?category=$1
这是可行的,但是问题是我的图像存储为图像/产品/图像,并且规则是编写我所有的图像链接,
我试过了:
RewriteRule ^images/products/(.*) images/products/$1
只是为了重写图像,但它不能正常工作
我的 htaccess 文件如下所示:
RewriteRule ^images/products/(.*) images/products/$1
RewriteRule ^(.*)/products index.php?category=$1
提前致谢,
担