我正在尝试使用 htacces 重写 ua url,我的 url es 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