Witam forumowiczów smile.gif
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
  1. Options -Indexes
  2.  
  3. ErrorDocument 404 /404.php
  4.  
  5. RewriteEngine On
  6. RewriteBase /
  7.  
  8. #Remove extra trailing slashes
  9. RewriteCond %{REQUEST_URI} ^(.*)/{2,}(.*)$
  10. RewriteRule . %1/%2 [R=301,L]
  11.  
  12. #Add missing trailing slash
  13. RewriteCond %{REQUEST_URI} /+[^\.]+$
  14. RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]
  15.  
  16. RewriteRule /(uploads/.*) $1 [R=301,L]
  17.  
  18. RewriteCond %{REQUEST_URI} ^/admin(.+)$
  19. RewriteCond %{REQUEST_FILENAME} !-f
  20. RewriteCond %{REQUEST_FILENAME} !-d
  21. RewriteCond %{REQUEST_FILENAME} !-l
  22.  
  23. RewriteRule ^(.+)$ admin/index.php?url=$1 [QSA,L]
  24.  
  25. RewriteCond %{REQUEST_FILENAME} !-f
  26. RewriteCond %{REQUEST_FILENAME} !-d
  27. RewriteCond %{REQUEST_FILENAME} !-l
  28.  
  29. RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
  30.  
  31. RewriteCond %{REQUEST_FILENAME} !-f
  32. RewriteCond %{REQUEST_FILENAME} !-d
  33. RewriteRule ^(.*)$ index.php?$1 [L,QSA]
  34.  
  35. RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
  36. RewriteRule ^ %1 [R=301,L]
  37.  
  38. <ifModule mod_deflate.c>
  39. <files "\.(js|css|html|jpg|png|gif|eot|woff|ttf|svg)$">
  40. SetOutputFilter DEFLATE
  41. </files>
  42. </ifModule>
  43.  
  44. <Files "\.(htaccess|htpasswd|ini|log|sh|inc|bak|cache|tpl)$">
  45. Order Allow,Deny
  46. Deny from all
  47. </Files>


Jak myślicie? W czym jest problem?
Pozdrawiam