其他分享
首页 > 其他分享> > htaccess URL重写最大参数长度

htaccess URL重写最大参数长度

作者:互联网

我正在建立一个迷你框架,该框架支持:

mysite.com/template/
mysite.com/template/action/
mysite.com/template/action/model/

用作引导程序:

RewriteEngine On
RewriteCond %{REQUEST_URI} !=/index.php
RewriteRule .* /index.php

但对于任何要求:

mysite.com/template/action/model/**extra/stuff/should/vanish/**

因此,最大URL大小将始终减少任何多余的内容:

mysite.com/template/action/model/

解决方法:

你的意思是这样吗?

# if more than 3 nodes deep          v--- the extra stuff should vanish
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/.+ /$1/$2/$3/? [R=301,L]

这将重定向浏览器,以便仅在3个以上的节点中保留3个节点.这可能超出了路由规则.

编辑:

becuase on the forth block this case doesnt hold up: site.com/a/b/c/?d

您需要一个特定的规则来与查询字符串进行匹配,这超出了RewriteRule表达式中的功能.您可以在以上规则之前或之后放置这些规则:

# Check if there's a query string
RewriteCond %{QUERY_STRING} !^$
# if there are exactly 3 nodes, then remove the query string
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/?$/$1/$2/$3/? [R=301,L]

查询字符串(?之后的所有内容)不是重写引擎中使用的URI的一部分,它需要特殊的条件.

标签:php,htaccess,url-rewriting
来源: https://codeday.me/bug/20191101/1980410.html