Skip to content

Instantly share code, notes, and snippets.

@carcam
Last active August 29, 2015 14:20
Show Gist options
  • Save carcam/51e076db9c1b6f9843c1 to your computer and use it in GitHub Desktop.
Save carcam/51e076db9c1b6f9843c1 to your computer and use it in GitHub Desktop.
Load images correctly in multilingual for Joomla
# Load images correctly in multilingual for Joomla
# This fixes when images are requested as http://www.site.com/en/images/myimage.png
# Although the best solution is to add the slash / to your images path: src="/images/myimage.png" in your content
RewriteRule ^[a-z]{2}/images/(.*) /images/$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment