für eine Bekannte habe ich eine Webseite erstellt und möchte diese natürlich mit den Pretty URLs ausstatten. Das ganze wird bei Host-Europe gehostet. Eigentlich ist dies kein Problem einzustellen (schon XX mal gemacht). Nun stoße ich aber auf ein Problem. Andauernd kriege ich den Fehler 404 - versteh nur nicht warum.
Config:
.htaccess#What type of URL rewriting should we be using for pretty URLs? Valid options are:
#'none', 'internal', and 'mod_rewrite'. 'internal' will not work with IIS some CGI
#configurations. 'mod_rewrite' requires proper apache configuration, a valid
#.htaccess file and most likely {metadata} in your page templates. For more
#information, see:
#http://wiki.cmsmadesimple.org/index.php ... ty_URL.27s
$config['url_rewriting'] = 'mod_rewrite';
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '';
#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';
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
AddType x-mapp-php5 .php
# 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 ^News/rss(.+)$ index.php?page=News/rss$1
# 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 ^(.+)(.html)?$ index.php?page=$1 [QSA]
Die Seite liegt direkt im Hauptverzeichnis als stimmt auch die Base Angabe. Benutzt wird das Webpack M. Laut FAQ von Host-Europe klappt mod_rewrite (ohne Probleme) erst ab Webpack L. Allerdings sagt mir die test.php, dass das Modul mod_rewrite geladen ist.
Kann mir wer weiterhelfen?

