How can I save a PHP file with a .php or .html extension?

后端 未结 4 1094
夕颜
夕颜 2020-12-06 14:40

Why do we have a PHP file as .php? Can we save a PHP file as .html, because at some sites, I have seen webpages with the .php extension? Why can\'t we have a .html extension

4条回答
  •  情深已故
    2020-12-06 14:47

    Rewrite Info here

    all requests to file.htm will be sent to file.php:

    Options +FollowSymlinks
    RewriteEngine on
    RewriteRule ^(.*)\.htm$ $1.php [NC]
    

提交回复
热议问题