Como corrigir problemas de AddType ou AddHandler

1

Recentemente, mudei-me de uma antiga conta de hospedagem do Godaddy para uma nova conta de hospedagem do Godaddy Cpanel.

Os menus no site são gerados usando declarações php include que funcionavam na antiga conta de hospedagem. No entanto, nesta nova hospedagem, a declaração include do php não funciona & Se você clicar em um link no site, a caixa de diálogo para salvar um arquivo será aberta, em vez do link HTML abrir uma página da web. O servidor é Deluxe Linux Hosting com cPanel rodando Apache php 5.3. Este é o htaccess que funcionou na antiga conta de hospedagem. Como faço para corrigir este problema?

#simple ETag
FileETag MTime Size

# Turn on the Expires engine
ExpiresActive On

# Expires after a month client accesses the file
ExpiresByType image/jpeg A2592000
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/x-icon A2592000
ExpiresByType text/plain A2592000

# Good for one week
ExpiresByType application/x-javascript M604800
ExpiresByType text/css M604800
ExpiresByType text/html M604800
# Compress entire website
<IfModule deflate_module>
    # Enable compression for the following file types.
    AddOutputFilterByType            \
     DEFLATE                         \
      application/javascript         \
      text/css                       \
      text/html                      \
      text/javascript                \
      text/plain                     \
      text/xml
</IfModule>
#
AddType application/x-httpd-php .php .htm .html
AddHandler x-httpd-php .php .htm .html
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    
por alnmurray 20.11.2016 / 07:50

0 respostas