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.
我正在移动一个基于 CGI 构建的站点。我的所有 .cgi 页面都可以正常工作,但是有几个 .html 文件包含<!--#include virtual="show_testimonials.cgi" -->但不会在 html 文件中输出脚本。
<!--#include virtual="show_testimonials.cgi" -->
我是否需要在我的 .htaccess 文件中专门添加一些内容才能使服务器端包含工作?
尝试重命名.shtml或检查您的 apache 配置。您还可以在此处指定 SSI 处理程序来解析.html文件。
.shtml
.html
AddHandler server-parsed html
在您的 .htaccess 文件中将导致您的所有.html 文件被服务器解析。