配置Easyphp将htm文件作为php处理
在我的远程服务器上,我正在使用线路AddType application/x-httpd-php .php .htm .html
解析带有 htm/html 扩展名的文件中的 php
如何在运行 EasyPHP 的本地计算机上复制此行为。
我尝试将同一行添加到 Apache/conf/httpd.conf 并重新启动服务器,但文件显示为 html 文件,而没有运行 php 代码。
各种 googles/php docs/stack/easyphp 文档搜索都没有帮助。
On my remote server I'm using the lineAddType application/x-httpd-php .php .htm .html
to parse the php in files with htm/html extensions
How can I replicate this behaviour on my local machine running EasyPHP.
I have tried adding the same line to Apache/conf/httpd.conf and restarting the server, but the files are displayed as html files, without the php code running.
Various googles/php docs/stack/easyphp doc searches have failed to help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在conf_files/httpd.conf中添加相同的行
因为每次启动服务器时都会重新生成 apache/conf/httpd.conf 。
you need to add the same line in the conf_files/httpd.conf
since the apache/conf/httpd.conf is regenerate each time you start your server.