viewtube is awesome, how can I redirect all requests from YouTube.com to myviewtub.domain? 1
i have something similar with another service.
- local DNS (dnsmasq) to redirect requests (officialservice.com -> localservice.local)
- 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'
Reply
Next