Juz jestem. Logi mówia,że:
[error] [client 127.0.0.1] File does not exist: C:/WebServ/httpd-users/cms/pl,9,Kontakt.html, referer:
http://localhost/~cms/Poniżej mój htaccess. Wiem,ze nie wygląda fajnie, ale działa na normalnych serwerach www bezproblemowo. Wiem,wiem.. chcę to wszystko przerobic dlatego instalacja cms-a na localhoście,żeby w spokoju sobie system przerabiać.
<IfModule mod_rewrite.o>
RewriteEngine On
#RewriteCond %{HTTP_HOST} !^www\.
RewriteBase /
RewriteCond %{REQUEST_URI} \.(tpl|tpl.php)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^-/,]+),akt-([0-9]+),([0-9]+).html$ index.php?action=strona&id=akt-$2&lang=$1&idnews=$3 [L]
RewriteRule ^([^-/,]+),akt-([0-9]+),([0-9]+),([^/,]+).html$ index.php?action=strona&id=akt-$2&lang=$1&idnews=$3&name=$4 [L]
RewriteRule ^([^-/,]+),gal-([0-9]+),([0-9]+).html$ index.php?action=strona&id=gal-$2&lang=$1&idnews=$3 [L]
RewriteRule ^([^-/,]+),gal-([0-9]+),([0-9]+),([^/,]+).html$ index.php?action=strona&id=gal-$2&lang=$1&idnews=$3&name=$4 [L]
RewriteRule ^([^-/,]+),shop-([0-9]+),([0-9]+).html$ index.php?action=strona&id=shop-$2&lang=$1&idnews=$3 [L]
RewriteRule ^([^-/,]+),shop-([0-9]+),([0-9]+),([^/,]+).html$ index.php?action=strona&id=shop-$2&lang=$1&idnews=$3&name=$4 [L]
RewriteRule ^([^-/,]+),zdjecia,([0-9]+).html$ index.php?action=strona&id=zdjecia&ida=$2&lang=$1 [L]
RewriteRule ^([^-/,]+),zdjecia,([0-9]+),([^/,]+).html$ index.php?action=strona&id=zdjecia&ida=$2&lang=$1&name=$3 [L]
RewriteRule ^([^-/,]+),zdjecia,([0-9]+)-([0-9]+).html$ index.php?action=strona&id=zdjecia&ida=$2-$3&lang=$1 [L]
RewriteRule ^([^-/,]+),zdjecia,([0-9]+)-([0-9]+),([^/,]+).html$ index.php?action=strona&id=zdjecia&ida=$2-$3&lang=$1&name=$4 [L]
RewriteRule ^([^-/,]+),akt-([0-9]+)-([0-9]+).html$ index.php?action=strona&id=akt-$2-$3&lang=$1 [L]
RewriteRule ^([^-/,]+),akt-([0-9]+)-([0-9]+),([^/,]+).html$ index.php?action=strona&id=akt-$2-$3&lang=$1&name=$4 [L]
RewriteRule ^([^-/,]+),akt-([0-9]+),([^/,]+).html$ index.php?action=strona&id=akt-$2&lang=$1&name=$3 [L]
RewriteRule ^([^-/,]+),gal-([0-9]+)-([0-9]+).html$ index.php?action=strona&id=gal-$2-$3&lang=$1 [L]
RewriteRule ^([^-/,]+),gal-([0-9]+)-([0-9]+),([^/,]+).html$ index.php?action=strona&id=gal-$2-$3&lang=$1&name=$4 [L]
RewriteRule ^([^-/,]+),gal-([0-9]+),([^/,]+).html$ index.php?action=strona&id=gal-$2&lang=$1&name=$3 [L]
RewriteRule ^([^-/,]+),shop-([0-9]+)-([0-9]+).html$ index.php?action=strona&id=shop-$2-$3&lang=$1 [L]
RewriteRule ^([^-/,]+),shop-([0-9]+)-([0-9]+),([^/,]+).html$ index.php?action=strona&id=shop-$2-$3&lang=$1&name=$4 [L]
RewriteRule ^([^-/,]+),shop-([0-9]+),([^/,]+).html$ index.php?action=strona&id=shop-$2&lang=$1&name=$3 [L]
RewriteRule ^([^-/,]+),([^-/,]+).html$ index.php?action=strona&id=$2&lang=$1 [L,NC,NS]
RewriteRule ^([^-/,]+),([^-/,]+),([^/,]+).html$ index.php?action=strona&id=$2&lang=$1&code=$3 [L,NC,NS]
</IfModule>