Last active
August 29, 2015 14:20
-
-
Save carcam/51e076db9c1b6f9843c1 to your computer and use it in GitHub Desktop.
Load images correctly in multilingual for Joomla
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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