Q1:如何将这两个条件联系起来Q2:如何让它们坚持下面的所有重写规则而不仅仅是第一条规则?if BOTH A AND B, then proceed...
RewriteCond %{REQUEST_URI} ^IMAGE-.*$ // if filename starts with IMG- and,
RewriteCond %{REQUEST_FILENAME} !-f // if file does exist, then proceed:
RewriteRule Rule1
RewriteRule Rule2
RewriteRule Rule3
# -- END IF -- STOP HERE -- #
Run Code Online (Sandbox Code Playgroud)