Ajuda com o Ubuntu redirecionando o Joomla

0

Estou bastante perdido. Eu estou tentando chegar ao nível de conhecimento de "macaco treinado", então, por favor, seja simples em suas respostas, e não assuma que eu sei alguma coisa. : -)

Ambiente: Ubuntu 17.1, Apache2, PHP 7.0.

Eu tenho dois sites Joomla usando a extensão sh404SEF para redirecionar URLs do Joomla como "index.php? option = com_content & Itemid = 101 & catid = 15 & amp; id = 54 & amp; lang = en & amp; view = article" to "/ blog / nome do artigo ".

Eles funcionam bem na minha hospedagem, mas não no meu servidor pessoal, onde eu tento modificações off-line.

Eu tentei tudo o que posso encontrar aqui e em outros sites. Eu entrei no etc / apache2 / sites-available / 000-default.conf e modifiquei o código assim:

    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All (I also tried the suggested AllowOverride FileInfo)
            Order allow,deny
            allow from all
    </Directory>

Meu (despojado) arquivo .htaccess é:

    ########## Begin - No directory listings
    ## Note: +FollowSymlinks may cause problems and you might have to remove it
    IndexIgnore *
    # Options +FollowSymLinks All -Indexes
    ########## End - No directory listings## No directory listings

    ########## Begin - File execution order, by Komra.de
    DirectoryIndex index.php index.html
    ########## End - File execution order

    ########## Begin - Activate RewriteBase
    RewriteBase /
    ########## End - Activate RewriteBase

    ## Mod_rewrite in use.

    RewriteEngine On

    ## Begin - Joomla! core SEF Section.
    #
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    #
    # If the requested path and file is not /index.php and the request
    # has not already been internally rewritten to the index.php script
    RewriteCond %{REQUEST_URI} !^/index\.php
    # and the requested path and file doesn't directly match a physical file
    RewriteCond %{REQUEST_FILENAME} !-f
    # and the requested path and file doesn't directly match a physical folder
    RewriteCond %{REQUEST_FILENAME} !-d
    # internally rewrite the request to the index.php script
    RewriteRule .* index.php [L]
    #
    ## End - Joomla! core SEF Section.

Minha pergunta é: o que estou fazendo de errado e como corrigi-lo?

    
por Memphismark 25.10.2017 / 05:00

0 respostas