Geen inlog en geen bestand.
Als ik de .htaccess even weghaal werkt het prima. Ik lees in het forum dat anderen
dit probleempje ook hebben / hadden maar ik zie er geen antwoord bij.
Wat moet er anders aan deze standaard .htaccess om het wel te laten werken?
Ik gebruik:
Code: Select all
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off
# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On
#Rewrites page.shtml as index.php?page
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?pagina=$1 [QSA]
#Toevoeging om '/' aan domain toe te voegen
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# timezone
SetEnv TZ Europe/Amsterdam
# secure htaccess file
<Files .htaccess>
order allow,deny
deny from all
</Files>
John