apache 把404页面的url转发给php脚本处理

htaccess1 RewriteCond %{REQUEST_FILENAME} !-f 2 RewriteRule ^( *)$ map php?ho
# .htaccess
1 RewriteCond %{REQUEST_FILENAME} !-f 2 RewriteRule ^(.*)$ map.php?host=%{HTTP_HOST}&uri=%{REQUEST_URI}

第一行是执行第二行的条件,条件是请求的文件不存在

第二行则把host, uri作为参数传递给Php脚本map.php

 

应用:

phpcms的专题http://www.example.com/html/special/zhuanti/index.html,想把html/special去掉

模板里面构造这样的链接 http://www.example.com/zhuanti/index.html,点击这个链接就会把url作为参数转发给map.php处理

// map.php
$html = file_get_contents($path); // $path你想显示的文件地址 echo $html;

  

您可能有感兴趣的文章
phpcms 的实用相关接口,函数,调用方法

phpcms常用接口调用方法

phpcms数据结构

phpcms头部代码详细分析

phpcms head 代码分析