Running PHP without extension without using mod_rewrite?

前端 未结 3 2041
没有蜡笔的小新
没有蜡笔的小新 2020-12-29 11:34

Using Apache 2.2 and PHP 5, what\'s the best way to run PHP without the .php extension? For example, I have a script called app.php and I like to i

3条回答
  •  梦谈多话
    2020-12-29 11:57

    You could also force the mime type of a specific file in your .htaccess:

    
    ForceType application/x-httpd-php
    
    

提交回复
热议问题