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

php 自定义路由

时间:2016-06-06 21:59:45      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:

httpd.conf

 

找到DocumentRoot  将路径更改为项目根目录

 

然后在项目根目录中新建一个.htaccess文件,加入以下代码

<ifmodule mod_rewrite.c>
 
 RewriteEngine On

 RewriteCond %{QUERY_STRING} ^(.*)
 RewriteRule ^([a-z]{2,10})/$ /index.php?controller=$1&%1  
    
 RewriteCond %{QUERY_STRING} ^(.*)
 RewriteRule ^([a-z]{2,10})\/([a-z]{1,20})/$ /index.php?controller=$1&action=$2&%1 


</ifmodule>

当访问localhost:9090/index/index/时,等同于访问localhost:9090/index.php?controller=index&action=index

php 自定义路由

标签:

原文地址:http://www.cnblogs.com/CyLee/p/5565152.html

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