当前位置: 编程技术>php
php快速url重写实例代码
来源: 互联网 发布时间:2014-08-30
本文导语: 5.30以上的版本才能使用,继承了上一版本的快速重定向的特点(单独类,全部使用静态调用),增添了一个很重要的功能和属性,可以调用其他url中的模块了,也使得模块与模块间或页面与页面间的函数简化共享得以实现。 .htaccess...
5.30以上的版本才能使用,继承了上一版本的快速重定向的特点(单独类,全部使用静态调用),增添了一个很重要的功能和属性,可以调用其他url中的模块了,也使得模块与模块间或页面与页面间的函数简化共享得以实现。
.htaccess文件写法:
代码示例:
#-------------- .htaccess start ---------------
RewriteEngine on
RewriteRule !.(js|ico|gif|jpg|png|css|swf|htm|txt)$ index.php
php_flag magic_quotes_gpc off
php_flag register_globals off
#-------------- .htaccess end ---------------
RewriteEngine on
RewriteRule !.(js|ico|gif|jpg|png|css|swf|htm|txt)$ index.php
php_flag magic_quotes_gpc off
php_flag register_globals off
#-------------- .htaccess end ---------------
重写功能引入:让站点根目录的index.php末尾写上下列代码,重写就开启了(正常条件:1.apache的重写配置成功,且开启了.htaccess支持的.2.站点根目录的.htaccess文件设置好了.3.class.rewrite.php类文件在index.php前面部分加载了.4.页面模块文件位置及写法无误):
代码如下:
代码示例:
//............
Rewrite::__config(
$config['path'],/*'http://xxxxx/mysite/'URL基础位置*/
$config['md_path'],/*'c:/phpsite/www/mysite/modules/'模块文件物理目录*/
array(
'phpinfo'
)
);
Rewrite::__parse();
//..........
Rewrite::__config(
$config['path'],/*'http://xxxxx/mysite/'URL基础位置*/
$config['md_path'],/*'c:/phpsite/www/mysite/modules/'模块文件物理目录*/
array(
'phpinfo'
)
);
Rewrite::__parse();
//..........
模块文件写法:
testPk.php
代码示例:
class.rewrite.php;
代码如下:
代码示例:
您可能感兴趣的文章:
- php 伪静态 url重写简单示例
- php 伪静态(url重写)的写法
- php5.3以上版本中快速url重写的方法