当还没有设置查询字符串时,我需要重定向到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
答案 0 :(得分:2)
您的正则表达式将匹配任何文本。如果您希望它匹配空字符串,请使用^$
。