Witam
odświeżę ten wątek bo mam podobny problem. Plik .htaccess zaczerpnięty ze strony Kohany wygląda następująco:
# Turn on URL rewriting
RewriteEngine On
# Put your installation directory here:
# If your URL is www.example.com/kohana/, use /kohana/
# If your URL is www.example.com/, use /
RewriteBase /kohana_rugby/
# Protect application and system files from being viewed
RewriteCond $1 ^(application|system)
# Rewrite to index.php/access_denied/URL
RewriteRule ^(.*)$ index.php/access_denied/$1 [PT,L]
# Allow these directories and files to be displayed directly:
# - index.php (DO NOT FORGET THIS!)
# - robots.txt
# - favicon.ico
# - Any file inside of the media/images/, media/js/, or media/css/ directories
RewriteCond $1 ^(index\.php|robots\.txt|favicon\.ico|media/images|media/js|media/css)
# No rewriting
RewriteRule ^(.*)$ - [PT,L]
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [PT,L]
na Windowsie xp działa bez problemu natomiast w przypadku ubuntu 9.10 nie chce działać
w phpinfo widzę, że załadowany jest w apachu moduł mod_rewrite
próbowałem też podmienić htaccess na ten podany w tym wątku i nic problem ten sam
Może ktoś miał podobny problem i udało się rozwiązać ?