使用htaccess重写url无法正常工作

I am trying to rewrite u a url using htacces, my url es https://example.com/web/xx and y change web for other word example https://example.com/test/xx RewriteRule ^web(.*) test$1 but dont work, any idea? Here is my .htaccess

 RewriteEngine on

 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-1

 RewriteRule ^web(.*) test$1

 RewriteRule . index.php