标签: apache .htaccess nginx
我需要设置一些NGINX规则,但我需要为Apache设置它们。有一个对等的东西吗?
location ~* ^/media/(.+?)/(.+)$ { expires 1M; access_log off; add_header Cache-Control "public"; alias /var/www/html/storage/$1/media/$2; }