Witam forumowiczów

Zainstalowałem na hostingu w home.pl pewien skrypt - gielda.bezpieczpodroz.org
Niestety działa tylko strona główna. Gdy próbuje się przejść np. do Listings lub search w górze strony wywala too many redirects a link wygląda tak:
http://gielda.bezpiecznapodroz.org/listing...p;url=listings/Dodam, że ten sam skrypt zainstalowałem na innym serwerze( hekko.pl) i tak wszystko jest ok.
Wrzucam Wam poniżej .htaccess
Options -Indexes
ErrorDocument 404 /404.php
RewriteEngine On
RewriteBase /
#Remove extra trailing slashes
RewriteCond %{REQUEST_URI} ^(.*)/{2,}(.*)$
RewriteRule . %1/%2 [R=301,L]
#Add missing trailing slash
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]
RewriteRule /(uploads/.*) $1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/admin(.+)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ admin/index.php?url=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
RewriteRule ^ %1 [R=301,L]
<ifModule mod_deflate.c>
<files "\.(js|css|html|jpg|png|gif|eot|woff|ttf|svg)$">
SetOutputFilter DEFLATE
</files>
</ifModule>
<Files "\.(htaccess|htpasswd|ini|log|sh|inc|bak|cache|tpl)$">
Order Allow,Deny
Deny from all
</Files>
Jak myślicie? W czym jest problem?
Pozdrawiam