目前我正在本地(Apache)的 NGINX 中设置一个项目。
我在将规则从 NGINX 转换为 .htaccess 规则时遇到了麻烦。有人能帮我将以下规则转换为 .htaccess 规则吗?
location /test/ {
set $store_code test;
index index.html index.php;
try_files $uri $uri/ @handler_test;
expires 30d;
}
提前致谢。