如何使用.htaccess规则将.php重写为.html?

red*_*der 6 .htaccess mod-rewrite

我想使用规则将.php扩展.html名转换为扩展名.htaccess

这是我可以做的事情,如果是这样,怎么样?

小智 11

RewriteEngine on
RewriteRule ^(.*)\.html$ $1.php [nc]
Run Code Online (Sandbox Code Playgroud)

使用mod_rewrite.$ 1表示正则表达式的第一部分,[nc]表示不区分大小写.

你可以看一下这篇文章:http://roshanbh.com.np/2008/02/hide-php-url-rewriting-htaccess.html

编辑:删除了一行.我认为你不需要.另外,评论我做了什么.