我正在尝试创建一个条件规则,如果它匹配(图像、样式表、javascript)然后对 url 不做任何事情,如果 url 不包括捐赠从 https 到 http 的更改
她就是我现在拥有的。
RewriteEngine On
RewriteCond %{QUERY_STRING} images [OR]
RewriteCond %{QUERY_STRING} stylesheets [OR]
RewriteCond %{QUERY_STRING} javascript
RewriteRule ^.*$ - [NC,L]
RewriteCond %{QUERY_STRING} !donate
RewriteCond %{REQUEST_URI} !donate
RewriteRule (.*) http://www.creative-capital.org$1/ [R]