【问题标题】:learning htaccess commands学习 htaccess 命令 【发布时间】:2012-06-16 09:55:29 【问题描述】: 在 htaccess 重写代码中 ^ 代表什么。我在哪里可以找到所有 htaccess 实体,如 ^ \d 等及其含义。我已经开始寻找,但我能找到的只是示例,而不是基本运算符的解释。 【问题讨论】: 你试过the mod_rewrite documentation吗? 标签: php html .htaccess 【解决方案1】: '^' 指的是匹配字符串的开头。 \d - 匹配任何特殊字符,这里将匹配 'd'。 你可以参考this link写.htaccess 【讨论】: