AddType या AddHandler समस्याओं को कैसे ठीक करें


1

मैं हाल ही में एक पुराने Godaddy होस्टिंग खाते से एक नए Godaddy Cpanel होस्टिंग खाते में चला गया।

वेबसाइट पर मेनू php का उपयोग करके उत्पन्न होते हैं, जिसमें पुराने होस्टिंग खाते पर काम करने वाले बयान शामिल होते हैं। हालाँकि, इस नई होस्टिंग पर php में स्टेटमेंट काम नहीं करता है और यदि आप वेबसाइट पर एक लिंक पर क्लिक करते हैं, तो HTML पेज के बजाय एक वेब पेज खोलने के लिए फ़ाइल को बचाने के लिए डायलॉग। सर्वर डीलक्स लिनक्स होस्टिंग है, जिसमें cPanel अपाचे php 5.3 चल रहा है। यह 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]
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.