码迷,mamicode.com
首页 > Web开发 > 详细

PHP的mod_rewrite重写模块将.php后缀换成.html

时间:2014-07-16 17:30:20      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:mod_rewrite   php mod_rewrite   

apache Rewrite


mod_rewrite的魔力
简单举例:创建三个文件,分别命名为 test.html,test.php和.htaccess
test.html 输入:
<h1>This is the HTML file.</h1>
test.php输入:
<h1>This is the php file.</h1>
.htaccess输入:
RewriteEngine on
RewriteRule ^/?test\.html$ test.php [L]

将以上三个文件放test测试文件夹下,在浏览器录入:
http://www.example.com/test/test.html
在浏览器中将 www.example.com替换成你自己的域名。如果运行结果显示“This is the PHP file”,那么运行成功,如果结果显示“This is the Html file”,那么肯定是哪里出了问题,请你再仔细检查下。
如果你测试成功,你是否发现了我们录入了test.html的文件名,确执行了test.php文件,是的,你已经初识了mod_rewrite的神奇。


在想要将.php后缀换成.html的目录下创建并命名为.htaccess文件。

输入下一段,

RewriteEngine on

RewriteRule ^/?([a-zA-Z0-9]+)\.html$ $1.php [L]



创建无文件后缀名链接
如果你想使你的PHP网站的链接更加简洁易记-或者隐藏文件的后缀名,试试这个:
RewriteRule ^/?([a-z]+)$ $1.php [L]



PHP的mod_rewrite重写模块将.php后缀换成.html,布布扣,bubuko.com

PHP的mod_rewrite重写模块将.php后缀换成.html

标签:mod_rewrite   php mod_rewrite   

原文地址:http://blog.csdn.net/phpfenghuo/article/details/37836547

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!