我对ReWrite也不太缺乏经验(不过也不是高手),所以我希望somone可以帮助我.
RewriteRule ^$ index.php?page=home [NC] RewriteRule ^adm$ index.php?page=adm_home [NC] RewriteRule ^adm/stats index.php?page=adm_stats [NC]
上面是我的.htaccess文件的片段.正如您所看到的,当有人访问http://www.example.com/adirectory/时,实际上会调用index.php?page = home,如果有人访问http://www.example.com/adirectory/adm /它仍会在"adirectory"中调用index.php?page = adm_home.
我想要实现的是:我希望能够在我的页面上显示警报,为此我想简单地能够添加alert = n(其中n是数字),因此将重定向设置为的index.php?页=家庭与警告= N
但是,我无法理解如何做到这一点,正则表达式令我感到困惑.寻求你的帮助.
您可以将QSA标志设置为自动将最初请求的查询字符串附加到新的查询字符串:
RewriteRule ^$ index.php?page=home [L,QSA] RewriteRule ^adm$ index.php?page=adm_home [L,QSA] RewriteRule ^adm/stats$ index.php?page=adm_stats [L,QSA]