自定义文件扩展名(例如:www.mysite.com/test.custom/)

自定义文件扩展名(例如:www.mysite.com/test.custom/)

我为运行 LAMP 组合的网络托管服务付费,我想知道是否可以为我的文档添加自定义扩展,例如:

www.mysite.com/custom.extension

代替:

www.mysite.com/custom.php

它可以在我的本地 XAMPP 计算机上运行(无需修改任何内容),我可以随意命名我的文件,但我不能在我的付费网络主机上运行;它只是以纯文本形式显示 HTML。

答案1

您需要为此设置 Apache。将如下行添加到您的httpd.conf

AddType application/x-httpd-php .extension

它应该可以工作。

相关内容