当前,我已配置htaccess,以便在域后键入任何内容时,该内容将被视为get
RewriteRule ^(.*)$ /index.php?id=$1
如此
www.example.com/test
将重定向到
www.example.com/index.php?id=test
现在我想要的是检测第一个/后是否有@字符并做些不同的事情的页面
例如
www.example.com/#test
转到
www.example.com/index.php?abc=test
虽然仍然保留第一条规则,这可以做到吗?
作为奖励,如果您知道如何使用#符号代替@,请告诉我,我尝试将NE标志置于规则中,但是我没有运气。