2015-08-10 3 views
0

Мой файл .htaccess для 3.3 проекта Kohana является:Index.php переписывают терпит неудачу после Apache 2.2 до 2.4 обновления

# Turn on URL rewriting 
RewriteEngine On 

# Installation directory 
RewriteBase/

# 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] 

Следуя совету Эрика я обновил HTAccess на следующее:

# Turn on URL rewriting 
RewriteEngine On 

# Installation directory 
RewriteBase/

# Protect hidden files from being viewed 
<Files ".*"> 
    Require all denied 
</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] 

Я обновил Виртуальный хост, чтобы включать в себя:

<Directory /srv/www/example.com/public_html/> 
    Require all granted 
</Directory> 

Я пропустил что-то еще?

+0

Что говорят ваши журналы ошибок Apache? – MonkeyZeus

+0

Вы сейчас получаете 404? – anubhava

+0

Вы должны прочитать http://httpd.apache.org/docs/2.4/upgrading.html о разрешении deny part – Eric

ответ

1

Модифицированный Htaccess

# Protect hidden files from being viewed 
<Files .*> 
    Require all granted 
</Files> 

и добавил AllowOverride All в VirtualHost конфигурации.

<Directory /var/www/example.com/public_html/> 
    Require all granted 
    AllowOverride All 
</Directory> 
Смежные вопросы