AddType 또는 AddHandler 문제 해결 방법


1

최근에 이전 Godaddy 호스팅 계정에서 새로운 Godaddy Cpanel 호스팅 계정으로 이동했습니다.

웹 사이트의 메뉴는 이전 호스팅 계정에서 작동했던 php include 문을 사용하여 생성됩니다. 그러나이 새로운 호스팅에서는 PHP include 문이 작동하지 않으며 웹 사이트의 링크를 클릭하면 웹 페이지를 여는 html 링크 대신 파일을 저장하는 대화 상자가 열립니다. 서버는 Apache php 5.3을 실행하는 cPanel을 사용한 Deluxe Linux Hosting입니다. 이것은 이전 호스팅 계정에서 작동 한 htaccess입니다.이 문제를 어떻게 해결합니까?

#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]
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.