htaccess staat in de root. Maar ik krijg direct een internal server error. Het is hetzelfde htacces bestand dat ik ook op een andere website gebruikt, en daar werkt ie, nl:
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
php_value memory_limit 20M
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
Code: Select all
php_value memory_limit 20M
Code: Select all
DirectoryIndex index.php
