Skip to content

Replace text in a response file

nginx
server {

// ...
    location / {
        alias /usr/share/nginx/html;
        index index.html index.htm;
        
        sub_filter `href="' 'href="prefix/';
        sub_filter_once off;
        sub_filter_types *;
    }
// ...

}

Private Licensed