当查询字符串为空时,.htaccess重定向到start.php

时间:2010-12-04 12:43:52

标签: .htaccess redirect

当还没有设置查询字符串时,我需要重定向到start.php .. 我尝试了以下内容,但并不知道rexex的作用。

 # BEGIN WordPress
 <IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /
 RewriteCond %{QUERY_STRING} ^(.*)$  #is there the equal operator = ''? 
 RewriteRule ^ /start.php/? [L]
 </IfModule>
 # END WordPress

感谢您的帮助 问候形成冷,braoh!

peachio

1 个答案:

答案 0 :(得分:2)

您的正则表达式将匹配任何文本。如果您希望它匹配空字符串,请使用^$