Jpg files readed as html?

Hi,
I have a problem with the gallery on my webpage:

http://www.travelers.rf.gd/sicily.gal.html

Pictures from the gallery are not visible, I have checked links several times. another gallery with same code works fine (http://www.travelers.rf.gd/bali.gal.html) It looks like pictures in folder sicgal are recognised as an HTML, not as a jpg.

Please advise.

The reason these image links don’t work is because your .htaccess rules are redirecting the requests to a HTML file. Specifically, this .htaccess rule is causing the problem:

RewriteRule sycylia pl.sicily.html

This .htaccess rule will redirect any URL containing the word sycylia to the HTML file. So all the files with that word are being redirected to the HTML page.

The way to fix this is probably to make the .htaccess rule more specific. For example, the .htaccess rule:

RewriteRule "^/sycylia" pl.sicily.html

Will ONLY redirect URLs starting with http://www.travelers.rf.gd/sycylia to the HTML page. If that’s not what you want, people here may be able to help you with the .htaccess rules which do what you need to do without unintended side effects.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.