我在根 htaccess 中使用它
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php?p=%{REQUEST_URI} [L]
这会成功重写http://example.com/notexistsfolder
但我也想将http://example.com/user/notexistsfolder重定向到http://example.com/notexistsfolder
我应该添加什么代码来实现这一点?