标签: regex apache mod-rewrite wildcard
请告诉我如何使用以下内容:
*\m\* 匹配以下所有
*\m\*
\forgemod\m\test \forgemod\m\anythingcanbehere
我更喜欢使用简单的通配符,例如file globbing时可用的通配符,而不是完整的正则表达式。
答案 0 :(得分:2)
您可以在root .htaccess中使用此规则:
RewriteEngine On RewriteRule ^(.+?/)?m/(.*)$ /$1?pp=main&a=$2 [L,QSA,NC]