我有一些图片网址:http://example.com/12345-large_default/image.jpg
我想获得12345并重写为:http://example.com/app/img.php?id=12345
我试过这个并做了很多改变:
RewriteRule ^([0-9]+)\-large_default.jpg$ /app/img.php?id=$1
但我无法让它发挥作用。
答案 0 :(得分:0)
将此规则添加到.htaccess文件中,它将起作用。
RewriteRule ^12345-large_default/image\.jpg$ /app/img.php?id=12345&%{QUERY_STRING}