-1

我正在尝试编写一个规则来忽略我的 .htaccess 中的特定链接

RewriteRule ^([a-zA-Z0-9-_",'w\s@]+)$ profile?u=$1
RewriteRule ^([a-zA-Z0-9-_",'w\s@]+)/$ profile?u=$1

上面的代码将重定向任何链接,如http://me.com/you

http://me.com/profile?u=you

但我希望它忽略联系人一词,以便在用户键入 me.com/contact 时

用户转到联系页面而不是转到 me.com/profile?u=contact

谢谢,您的帮助将不胜感激

4

1 回答 1

0

Add this right before the rule to exclude the word:

RewriteCond ^((?!contact).+)$

Really, you can look it up in a reference.

于 2012-06-14T01:09:29.133 回答