标签: .htaccess rewrite
我有2个域名,但使用1个数据库.. 我想要重写路径文件图像。 但错误500。 请帮帮我!
RewriteRule ^img/video/([^/]*)\.jpg$ http:\/\/example.com\/upload\/video\/$1.jpg [L]
答案 0 :(得分:1)
重写时无需转义/:
/
RewriteRule ^img/video/([^/]*)\.jpg$ http://example.com/upload/video/$1 [L]
会奏效。