MyBB Community Forums

Full Version: .htaccess help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, I would want to know how to rewrite all images to https ?
Please help.
try:
#redirect all https traffic to http, unless it is pointed at /checkout
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !^/checkout/?.*$
RewriteRule ^(.*)$ http://mydomain.com/$1 [R=301,L]