代码之家  ›  专栏  ›  技术社区  ›  Michael D. Irizarry

ForceType application/x-httpd-php on.htaccess根本不工作的原因

  •  0
  • Michael D. Irizarry  · 技术社区  · 14 年前

    .htaccess接口

    <Files client>
     ForceType application/x-httpd-php
    </Files>
    

    <?php 
         echo "FOO BAR";
    ?>
    

    只是为了测试,但服务器并没有解析客户机文件,它只是将其作为文件下载。我也试过SetHandler,但运气不好。

    更新

    我不能用ForceType,但我可以用这个。

    <Files client>
         SetHandler php-script
    </Files client>
    
    2 回复  |  直到 12 年前
        1
  •  2
  •   Dr.Molle    14 年前

    ForceType需要文件信息的AllowOverride

    检查您的httpd.conf格式如果设置好了。

        2
  •  1
  •   Michael D. Irizarry    13 年前

    我用的是MediaTemple,而且有自己的做事方式。我不能用ForceType,但我可以用这个。

    SetHandler php脚本

        3
  •  0
  •   Avinash Singh user11418431    5 年前
    #suPHP_ConfigPath /home4/nitrousg/public_html
    
    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME}\.php -f
    RewriteRule ^(.*)$ $1.php
    
    AddType application/x-httpd-php .htm .html
    AddType text/html .html
    AddHandler server-parsed .html
    

    如何升级到7台及以上服务器?

    技术人员说我的部队类型不适合升级??

    <Files Forged-Wheels>
    ForceType application/x-httpd-php
    </Files>
    
    <Files Wheels>
    ForceType application/x-httpd-php
    </Files>