So, what is the problem?:
When clicking on a link or entering an adress manually (Pretty URLs is of course activated) I get an 404 error message.
My config.php:
My .htaccess:#Show mod_rewrite URLs in the menu?
$config['assume_mod_rewrite'] = true;
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '/';
#If you don't use mod_rewrite, then would you like to use the built-in
#pretty url mechanism? This will not work with IIS and the {metadata} tag
#should be in all of your templates before enabling.
$config['internal_pretty_urls'] = false;
#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy? (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;
#If using none of the above options, what should we be using for the query string
#variable? (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
The base-tag is set correctly in my template.Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 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 [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ neue_GJD-Netzseite/jugend/index.php?page=$1 [QSA]
The site is running undern an local Apache Server under Ubuntu Linux. The site is working without problems except for the Pretty URLs. RewriteModule is installed and working: I'm running Wordpress with PU without problems.
I don't if it is of importance or not. The template is a html-file which I am including using the {include}-tag as explained here somewhere in the forum.
Can anybody help.? I have not the faintest idea what is wrong.

