3.1路由支持自定义
大家都知道SEO的重要性,官方提供的路由不支持随心所遇的自定义URL;在cms项目开发时这个问题是很大的困扰。未解决这个经过反复测试终于修成正果了。
基于官方提供的路由插件小做修改让路由实现自定义。
并不是很完善,可以完全兼容根目录访问。不支持后缀和二级目录!
哪位大神如果感兴趣可以继续修改改善。我是在3.1版本上做的修改,不过大致看了下在3.2版本稍作修改也是通用的。废话不多少直接贴代码了
首先修改下U方法
最终效果显示 例如访问user模块的reg方法 显示结果为 http://ml.topcms.pw/reg 这里的reg你可以自定义随意修改无需配置服务器function U($url='',$vars='',$suffix=true,$redirect=false,$domain=true) {<br>
// 解析URL<br>
$info = parse_url($url);<br>
$url = !empty($info['path'])?$info['path']:ACTION_NAME;<br>
if(false !== strpos($url,'@')) { // 解析域名<br>
list($url,$host) = explode('@',$info['path'], 2);<br>
}<br>
// 解析子域名<br>
if(isset($host)) {<br>
$domain = $host.(strpos($host,'.')?'':strstr($_SERVER['HTTP_HOST'],'.'));<br>
}elseif($domain===true){<br>
$domain = $_SERVER['HTTP_HOST'];<br>
if(C('APP_SUB_DOMAIN_DEPLOY') ) { // 开启子域名部署<br>
$domain = $domain=='localhost'?'localhost':'www'.strstr($_SERVER['HTTP_HOST'],'.');<br>
// '子域名'=>array('项目[/分组]');<br>
foreach (C('APP_SUB_DOMAIN_RULES') as $key => $rule) {<br>
if(false === strpos($key,'*') && 0=== strpos($url,$rule[0])) {<br>
$domain = $key.strstr($domain,'.'); // 生成对应子域名<br>
$url = substr_replace($url,'',0,strlen($rule[0]));<br>
break;<br>
}<br>
}<br>
}<br>
}<br>
<br>
// 解析参数<br>
if(is_string($vars)) { // aaa=1&bbb=2 转换成数组<br>
parse_str($vars,$vars);<br>
}elseif(!is_array($vars)){<br>
$vars = array();<br>
}<br>
if(isset($info['query'])) { // 解析地址里面参数 合并到vars<br>
parse_str($info['query'],$params);<br>
$vars = array_merge($params,$vars);<br>
}<br>
<br>
// URL组装<br>
$depr = C('URL_PATHINFO_DEPR');<br>
if($url) {<br>
if(0=== strpos($url,'/')) {// 定义路由<br>
$route = true;<br>
$url = substr($url,1);<br>
if('/' != $depr) {<br>
$url = str_replace('/',$depr,$url);<br>
}<br>
}else{<br>
if('/' != $depr) { // 安全替换<br>
$url = str_replace('/',$depr,$url);<br>
}<br>
// 解析分组、模块和操作<br>
$url = trim($url,$depr);<br>
$path = explode($depr,$url);<br>
$var = array();<br>
$var[C('VAR_ACTION')] = !empty($path)?array_pop($path):ACTION_NAME;<br>
$var[C('VAR_MODULE')] = !empty($path)?array_pop($path):MODULE_NAME;<br>
if(C('URL_CASE_INSENSITIVE')) {<br>
$var[C('VAR_MODULE')] = parse_name($var[C('VAR_MODULE')]);<br>
}<br>
if(!C('APP_SUB_DOMAIN_DEPLOY') && C('APP_GROUP_LIST')) {<br>
if(!empty($path)) {<br>
$group = array_pop($path);<br>
$var[C('VAR_GROUP')] = $group;<br>
}else{<br>
if(GROUP_NAME != C('DEFAULT_GROUP')) {<br>
$var[C('VAR_GROUP')]= GROUP_NAME;<br>
}<br>
}<br>
if(C('URL_CASE_INSENSITIVE') && isset($var[C('VAR_GROUP')])) {<br>
$var[C('VAR_GROUP')] = strtolower($var[C('VAR_GROUP')]);<br>
}<br>
}<br>
}<br>
}<br>
<br>
if(C('URL_MODEL') == 0) { // 普通模式URL转换<br>
$url = __APP__.'?'.http_build_query(array_reverse($var));<br>
if(!empty($vars)) {<br>
$vars = urldecode(http_build_query($vars));<br>
$url .= '&'.$vars;<br>
}<br>
}else{ // PATHINFO模式或者兼容URL模式<br>
if(C('URL_ROUTER_ON') && (C('URL_MODEL') == 2) && ($var[C('VAR_GROUP')] == '' || $var[C('VAR_GROUP')] == 'Home') ){<br>
$url = __APP__.'?'.http_build_query(array_reverse($var));<br>
if(!empty($vars)) {<br>
$vars = urldecode(http_build_query($vars));<br>
$url .= '&'.$vars;<br>
}<br>
if( is_array(C('URL_ROUTE_RULES')) ){<br>
foreach (C('URL_ROUTE_RULES') as $route_key => $route_val) {<br>
preg_match('#'.$route_val.'$#', $url ,$metches);<br>
if($metches){<br>
$route_url=$metches;<br>
$rule=$route_key;<br>
}<br>
}<br>
if($route_url){<br>
$url_new=explode(':', $rule);<br>
$u=$url_new[0];<br>
for($i=1;$i<count></count>
$u.=$route_url[$i].'/';<br>
}<br>
$u= trim($u,'/');<br>
$url=str_replace ('/', $depr, $u);<br>
}<br>
}<br>
}else{<br>
if(isset($route)) {<br>
$url = __APP__.'/'.rtrim($url,$depr);<br>
}else{<br>
$url = __APP__.'/'.implode($depr,array_reverse($var));<br>
}<br>
if(!empty($vars)) { // 添加参数<br>
foreach ($vars as $v => $val){<br>
if('' !== trim($val)) $url .= $depr . $v . $depr . urlencode($val);<br>
} <br>
}<br>
}<br>
//路由过滤<br>
<br>
if($suffix) {<br>
$suffix = $suffix===true?C('URL_HTML_SUFFIX'):$suffix;<br>
if($pos = strpos($suffix, '|')){<br>
$suffix = substr($suffix, 0, $pos);<br>
}<br>
if($suffix && '/' != substr($url,-1)){<br>
$url .= '.'.ltrim($suffix,'.');<br>
}<br>
}<br>
}<br>
if($domain) {<br>
$url = (is_ssl()?'https://':'http://').$domain.__ROOT__.'/'.$url;<br>
}<br>
<br>
if($redirect) // 直接跳转URL<br>
redirect($url);<br>
else<br>
return $url;<br>
}
其次对应的修改下路由行为这里我直接把文件附在下面。有兴趣的可以下载看看。
具体效果可以看本人做的项目
http://ml.topcms.pw
CheckRouteBehavior.class.php.zip
( 2.72 KB 下载:40 次 )
AD:真正免费,域名+虚机+企业邮箱=0元

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Learn about Python programming with introductory code examples Python is an easy-to-learn, yet powerful programming language. For beginners, it is very important to understand the introductory code examples of Python programming. This article will provide you with some concrete code examples to help you get started quickly. Print HelloWorldprint("HelloWorld") This is the simplest code example in Python. The print() function is used to output the specified content

PHP variables store values during program runtime and are crucial for building dynamic and interactive WEB applications. This article takes an in-depth look at PHP variables and shows them in action with 10 real-life examples. 1. Store user input $username=$_POST["username"];$passWord=$_POST["password"]; This example extracts the username and password from the form submission and stores them in variables for further processing. 2. Set the configuration value $database_host="localhost";$database_username="username";$database_pa

Title: From Beginner to Mastery: Code Implementation of Commonly Used Data Structures in Go Language Data structures play a vital role in programming and are the basis of programming. In the Go language, there are many commonly used data structures, and mastering the implementation of these data structures is crucial to becoming a good programmer. This article will introduce the commonly used data structures in the Go language and give corresponding code examples to help readers from getting started to becoming proficient in these data structures. 1. Array Array is a basic data structure, a group of the same type

"Go Language Programming Examples: Code Examples in Web Development" With the rapid development of the Internet, Web development has become an indispensable part of various industries. As a programming language with powerful functions and superior performance, Go language is increasingly favored by developers in web development. This article will introduce how to use Go language for Web development through specific code examples, so that readers can better understand and use Go language to build their own Web applications. 1. Simple HTTP Server First, let’s start with a

The simplest code example of Java bubble sort Bubble sort is a common sorting algorithm. Its basic idea is to gradually adjust the sequence to be sorted into an ordered sequence through the comparison and exchange of adjacent elements. Here is a simple Java code example that demonstrates how to implement bubble sort: publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

How to use PHP to write the inventory management function code in the inventory management system. Inventory management is an indispensable part of many enterprises. For companies with multiple warehouses, the inventory management function is particularly important. By properly managing and tracking inventory, companies can allocate inventory between different warehouses, optimize operating costs, and improve collaboration efficiency. This article will introduce how to use PHP to write code for inventory warehouse management functions, and provide you with relevant code examples. 1. Establish the database before starting to write the code for the inventory warehouse management function.

Java Selection Sorting Method Code Writing Guide and Examples Selection sorting is a simple and intuitive sorting algorithm. The idea is to select the smallest (or largest) element from the unsorted elements each time and exchange it until all elements are sorted. This article will provide a code writing guide for selection sorting, and attach specific Java sample code. Algorithm Principle The basic principle of selection sort is to divide the array to be sorted into two parts, sorted and unsorted. Each time, the smallest (or largest) element is selected from the unsorted part and placed at the end of the sorted part. Repeat the above

Huawei Cloud Edge Computing Interconnection Guide: Java Code Samples to Quickly Implement Interfaces With the rapid development of IoT technology and the rise of edge computing, more and more enterprises are beginning to pay attention to the application of edge computing. Huawei Cloud provides edge computing services, providing enterprises with highly reliable computing resources and a convenient development environment, making edge computing applications easier to implement. This article will introduce how to quickly implement the Huawei Cloud edge computing interface through Java code. First, we need to prepare the development environment. Make sure you have the Java Development Kit installed (
