http://demo.opencart.com/catalog/template/default/
http://demo.opencart.com/library/
http://demo.opencart.com/cache/
The great news is that the config.php couldn't be browsed via internet.

Solution: use .htaccess to fix this problem.
/catalog/.htaccess:
Code: Select all
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !/(image|css|javascript)/.*$
RewriteRule ^(.*) index.php [R=301]
/library/.htaccess:
Code: Select all
RewriteEngine On
RewriteBase /
RewriteRule ^(.*) index.php [R=301]