我正在尝试编写一个匹配斜杠的任何内容的htaccess规则。
例如,
我有一个监听/启动器和交流发电机的规则 我想写另一条规则,听取/启动器和交流发电机/ {任何}
所以只要在起动器和交流发电机之后有/ {任何}存在;它重定向到其他地方。
这是我目前的规则:
RewriteRule ^starters-and-alternators$ app/core/code/miscellaneous/allstartersandalts.php%{QUERY_STRING}
RewriteRule ^starters-and-alternators/$ app/core/code/miscellaneous/allstartersandalts.php%{QUERY_STRING}
答案 0 :(得分:0)
看起来我已经解决了!
是(。+)是我正在寻找的。 p>
RewriteRule ^starters-and-alternators/(.+)$ app/core/code/miscellaneous/allstartersandalts.php%{QUERY_STRING}