Mam aplikację napisaną w Kohana 3.3
Aplikacja umieszczona jest w podkatalogu "app_new".
Adres dostępu http://domena.pl/app_new/
Po wejściu w jaki kolwiek link np.
http://domena.pl/app_new/
http://domena.pl/app_new/auth
Pojawia się informacje o błędzie 404 Not Found.
Dodam iż aplikacja działa poprawnie na home.pl, nazwa.pl itp.
Czy ktoś spotkał się z podobnym przypadkiem lub zna rozwiązanie?
Plik .htaccess:
Kod
# Turn on URL rewriting
RewriteEngine On
RewriteBase /windykator_new/
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
RewriteEngine On
RewriteBase /windykator_new/
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]