Guten Morgen,
ich habe ein Link - Katalog installiert mit htaccess dann wird meine Seite nicht angezeigt, ohne htaccess wird sie angezeigt, was muss ich ändern in der htaccess? Im voraus schon mal vielen dank für die Hilfe.
So sieht meine htaccess aus:
[color=#BF0080]# Protect files
<Files ~ “^(.*).(inc|inc.php|tpl|sql)$”>
Order deny,allow
Deny from all
Protect directories
<Files ~ “^(files|images|include|lang|libs(/.+)?|temp(/.+)?|templates(/.+)?|javascripts(/.+)?)$”>
Order deny,allow
Deny from all
Disable directory browsing
Options -Indexes
Follow symbolic links in this directory
Options +FollowSymLinks
Set the default handler
DirectoryIndex index.php
URL rewrite rules
RewriteEngine OnCategory redirect
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php [QSA,L]
[/color]