我在这里得到了这样的网址
http://minecraftstorage/add
这条规则
RewriteRule ^add/? add.php [L]
但是该规则不仅会影响URL中的 add 字符串,还会影响Bootstrap css路径中的 additionals 字符串。 那么如何使它仅适用于添加而不能适用于附加?
答案 0 :(得分:0)
更改为RewriteRule ^add/?$ add.php [L]
$表示正则表达式(regex =正则表达式)测试字符串的结尾。