I've done all the changes (except for the metadata tag, the information shown in the metadata field is already in my templates so not sure if it'll be of much use), but I don't think my .htaccess is even functioning, see here:
http://www.colunas.ch/index.php?page=unsere-dienste
Try any of the links, it's not even doing any of the functions (I have the config set to mod rewrite and put the htaccess file as per the documentation in the root folder). I didn't have this issue with another site I run on a different box.
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# except for form POSTS
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
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]
Many thanks in advance!