Nachfolgend ist mein .htaccess
. Es funktioniert gut, aber ich habe einen Fehler in error_log
Datei:
[warn] RewriteCond: NoCase-Option für nicht-re wird nicht unterstützt und wird ignoriert.
<Files .htaccess>
order allow,deny
deny from all
</Files>
#Options +FollowSymlinks
DirectoryIndex index.php
Options All -Indexes
RewriteEngine on
# remove trailing slash
RewriteRule ^(.*)/$ /$1 [L,R=301]
#Redirect non-www to www
RewriteCond %{HTTP_HOST} !^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://www\.%{HTTP_HOST}/$1 [R=301,L]
RewriteRule ^part_(\d+)$ /detail.php?id=$1 [NC]
RewriteRule ^find_(.+)$ /search.php?q=$1 [NC]