Forum Moderators: phranque

Message Too Old, No Replies

when rewriting and redirecting from dynamic urls.

how to rewrite dynamic urls to static

         

frogz

11:12 pm on Dec 27, 2008 (gmt 0)

10+ Year Member



ok, the apache server can translate the dynamic url into static and redirect accordingly. But! the main links still havent changed! they change only when requested! how can you rewrite them all completely as the page loads?

Caterham

11:37 pm on Dec 27, 2008 (gmt 0)

10+ Year Member



Change the link generation in your application or use output filters like mod_proxy_html [apache.webthing.com] (with
SetEnv PROXY_HTML_FORCE
to use the module in non-proxied situations).

Since output filtering takes time and resources, rewriting your application's link generation is the better approach.

frogz

1:48 am on Dec 28, 2008 (gmt 0)

10+ Year Member



i did exactly that, thanx for your reply!