.htaccess arquivo ignorado pelo apache

1

Estou trabalhando em um aplicativo da web criado usando o php no codeigniter. Tudo funciona bem no host local. No entanto, o arquivo .htaccess está sendo ignorado pelo meu servidor live (RH7.1 Apache 2.4) apesar do Overide All no httpd.conf. Eu reiniciei o Serviço Apache, mas nada está funcionando. Alguma ideia do que pode estar errado?

.htaccess:

RewriteEngine on
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteRule ^(.*)$ ./index.php/$1 [L]

e

strpos(shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== false

retorna 1.

link

# Further relax access to the default document root:
<Directory "/var/www/html">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

. . . .

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
    Require all denied
</Files>
    
por Awais Tariq 14.03.2018 / 07:15

2 respostas

1

Parece que o problema estava no conteúdo do .htaccess. Substituí-lo por:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

e começou a funcionar bem. Eu sou meio que novo nisso. Alguém pode me dizer por que não estava funcionando antes e por que está trabalhando com o novo conteúdo do arquivo .htaccess?

    
por 14.03.2018 / 08:22
1

Can anyone tell me why it was not working before and why it is working with new .htaccess file content?

RewriteRule ^(.*)$ ./index.php/$1 [L]

Seu arquivo .htaccess original passa o caminho da URL solicitado como parte de informações adicionais sobre o nome do caminho no URL (também conhecido como PATH_INFO ). por exemplo. /index.php/foo/bar .

Para habilitar isso no Codeigniter, você provavelmente terá que definir isso explicitamente em config.php :

$config['uri_protocol']  = 'PATH_INFO';

No entanto, observe que PATH_INFO também pode ser desativado na configuração do seu servidor Apache com a diretiva AcceptPathInfo .

RewriteRule ^(.*)$ index.php?/$1 [L]

Considerando que seu "novo" arquivo .htaccess transmite o caminho da URL solicitado como parte da cadeia de consulta . por exemplo. /index.php?/foo/bar (anote o ? adicional). É possível que esta seja a configuração padrão do Codeigniter e funcionará sempre, independentemente da configuração do servidor.

    
por 05.04.2018 / 12:45