Skip Navigation
Jump
viewtube is awesome, how can I redirect all requests from YouTube.com to myviewtub.domain?
  • i have something similar with another service.

    1. local DNS (dnsmasq) to redirect requests (officialservice.com -> localservice.local)
    2. localservice.local is my apache proxy setting headers and opening all http requests to replace the links inside the page

    quick example

    ProxyHTMLEnable     on
    
    [...]
    
    ProxyHTMLURLMap     /aaa    /bbb/ccc
    
    [...]
    
    AddOutputFilterByType INFLATE;SUBSTITUTE;DEFLATE application/x-javascript
    Substitute 's|/service/aaa/|/service/bbb/|nq' Substitute 's|/domain/res/|/anotherdomain/res/|nq'
    
    1