Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我继承的代码有一个特殊情况,它使用 shtml 服务器端包含,但是我正在尝试向站点添加一些非常简单的登录功能,因此我需要在 PHP 中包含会话检查。
但是,我可以对服务器进行的唯一配置是 .htaccess 文件。
我可以让服务器使用 htaccess 将 shtml 解析为 PHP,或者使用 SSI,但是我无法让它同时解析它。
这个 .htaccess 配置有效,允许服务器使用多个处理程序来解析文件。正如预期的那样。
AddHandler application/x-httpd-php .shtml AddType text/html .shtml AddOutputFilter INCLUDES .shtml