Mod 根据单个规则重写一个或另一个变量?
是否可以调用一个或另一个变量?
我的类型页面获取 tag
或 type
变量。
我的代码不起作用,它只捕获第一个变量tag
。
我怎样才能将它合二为一,或者如果不可能,我该如何使两者都工作?
前任:
RewriteRule ^hen/egg/([^/\.]+)/?$ type.php?tag=$1 [L]
RewriteRule ^hen/egg/([^/\.]+)/?$ type.php?type=$1 [L]
Would it be possible to call one variable or another?
My type page gets either tag
or type
variables.
The code I have doesn't work, it only catches the first variable, tag
.
How can I combine it into one or if not possible how do I make both work?
ex:
RewriteRule ^hen/egg/([^/\.]+)/?$ type.php?tag=$1 [L]
RewriteRule ^hen/egg/([^/\.]+)/?$ type.php?type=$1 [L]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为它们使用不同的虚拟路径:
Use different virtual paths for them: