Chcialem pozbyc sie index.php z kohany wiec postapilem zgodnie z tutorialem, czyli odpowiednio spreparowany .htaccess
Kod
# 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/
# Do not enable rewriting for files that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [PT,L]
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/
# Do not enable rewriting for files that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite to index.php/URL
RewriteRule ^(.*)$ index.php/$1 [PT,L]
Jednak mimo to, adres nie dzialal bez indexa.
Probowalem wiec w ustawieniach apache'a. Dodalem linijki:
Kod
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/*/public_html>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteLog "/var/log/apache2/rewrite.log"
RewriteLogLevel 9
</IfModule>
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/*/public_html>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteLog "/var/log/apache2/rewrite.log"
RewriteLogLevel 9
</IfModule>
Jednak to nic nie dalo. Chcialem wiec przetestowac czy w ogole dziala mod_rewrite zgodnie z tym tutorialem http://www.wallpaperama.com/forums/how-to-...nabled-t40.html
Jednak psinco, nie dziala.
Dodalem wiec do apache2.conf linie ktorej wczesniej w ogole nie bylo.
Kod
LoadModule rewrite_module modules/mod_rewrite.so
Restartuje apacza i wyskakuje mi tekst:
Kod
[warn] module rewrite_module is already loaded, skipping.
A linki jakie byly takie sa nadal, bez index.php nic nie dziala. Nie ma strony.
Prosze o pomoc.