mod_rewrite informações do caminho postfix e preprrefix por diretório

1

Existe um problema com a configuração do .htaccess.

Eu só preciso do URL / category para corresponder ao script category.php , mas quando tento abrir esse URL, há um erro 404.

Aqui está o meu .htaccess:

RewriteEngine on
RewriteRule ^category/ category.php [QSA,L]

log do htaccess:

init rewrite engine with requested uri /category/
[www.test.com/sid#7fc1c2694dd0][rid#7fc1c25f00a0/initial] pass through /category/
[www.test.com/sid#7fc1c2694dd0][rid#7fc1c25e80a0/subreq] [perdir /home/ubuntu/domains/test.com/public_html/] add path info postfix: /home/ubuntu/domains/test.com/public_html/category.php -> /home/ubuntu/domains/test.com/public_html/category.php/
[www.test.com/sid#7fc1c2694dd0][rid#7fc1c25e80a0/subreq] [perdir /home/ubuntu/domains/test.com/public_html/] strip per-dir prefix: /home/ubuntu/domains/test.com/public_html/category.php/ -> category.php/
[www.test.com/sid#7fc1c2694dd0][rid#7fc1c25e80a0/subreq] [perdir /home/ubuntu/domains/test.com/public_html/] applying pattern '^category/' to uri 'category.php/'
[www.test.com/sid#7fc1c2694dd0][rid#7fc1c25e80a0/subreq] [perdir /home/ubuntu/domains/test.com/public_html/] pass through /home/ubuntu/domains/test.com/public_html/category.php

E o resultado é um erro 404 do Apache: Not Found

O URL / categoria solicitado / não foi encontrado neste servidor.

Se eu abrir /category.php diretamente, funcionará.

Aqui está a configuração do vhost:

<VirtualHost *:80>
    ServerName test.com
    ServerAlias www.test.com

    ServerRoot /home/ubuntu/domains/test.com
    DocumentRoot public_html
    <Directory "/home/ubuntu/domains">
        Options FollowSymLinks MultiViews
        AllowOverride all
        Require all granted
    </Directory>

    RewriteEngine On
    LogLevel alert rewrite:trace3

    ErrorLog logs/error.log
    CustomLog logs/access.log combined

        AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/json
        DeflateCompressionLevel 9
</VirtualHost>

Versão do servidor: Apache / 2.4.7 (Ubuntu)

Servidor criado: 22 de julho de 2014 14:36:38

    
por Alexey Kosov 13.02.2015 / 13:33

1 resposta

1

Eu tive um problema semelhante e substituí

Options MultiViews

com

Options  -MultiViews

Na verdade acabei com

Options +Indexes +FollowSymLinks -MultiViews

Encontrei essa solução aqui:

link

    
por 19.07.2017 / 15:39