我正在尝试使用htacces,我的URL https://example.com/web/xx和y将web改写为其他单词示例https://example.com/test/xx RewriteRule ^ web(。*)test $ 1,但不起作用,有什么主意吗? 这是我的.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-1
RewriteRule ^web(.*) test$1
RewriteRule . index.php