URL转移到另一个URL .htaccess

时间:2013-11-08 19:35:34

标签: php apache .htaccess

我不知道.htaccess好。我想做这样的事情。当用户转到此链接时:

www.example.ca/C2767442

我想将它们重定向到

www.example.ca/index.php?searchtext=C2767442&action=searchresults

我试过如下:

RewriteEngine On
RewriteRule ^([^a-z0-9-])$  index.php?searchtext=$1&action=searchresults  [NC,L]

任何帮助?

1 个答案:

答案 0 :(得分:2)

你正在寻找的可能是这个(我还没有测试过):

RewriteRule ^([a-zA-Z0-9]+)$  index.php?searchtext=$1&action=searchresults  [NC,L]
  1. 您忘记添加大写字符
  2. []中的^表示:“在括号中匹配所有BESIDES字符classess。