how can i change all my php page to show as html page in the browser ?
What will be the file name when they will save a x.php file ?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Try putting the following in a .htaccess file at the main directory of your site (public_html or www), or httpd.conf (or similar) if you aren't on shared hosting and have root access to the server:
RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php
When someone tries to save the page, it will save as .html (they will never know it was really a .php file!)