A URL rewriter is an Apex Class that inherits the rewriter interface and allows a developer to map site URLs to other URLS, for example you can map `/SomeArticle` to a VisualForce page that takes a specific ID, such as `/apex/ArticleViewer?Id=xyz`, and `/SomeOtherArticle` to ...
5
votes
2answers
41 views
Visualforce Caching With URL Rewriter
I have a URL rewriter running on sites which essentially maps pretty URLs to a single Visualforce page which takes a standard ID parameter.
If I enable caching for the page with cache='true' in the ...
6
votes
1answer
99 views
Site.UrlRewriter Interface implementation problem with more than 2 parameters
Sites provides built-in logic that helps you display user-friendly URLs and links to site visitors. For that we need to implement Site.UrlRewriter interface and create our own class to map ...
3
votes
2answers
456 views
serverurl and visualforce
How do I get the server URL from a visual force page?
I am using conga and when I invoke from a button the code it passes the server URL as:
...
2
votes
2answers
141 views
generateURLfor method in urlrewriter? how will it be invoked?
I was trying to implement the urlrewriter as mentioned in the below url
http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_site_urlRewriter.htm
want to know how this generateURLfor ...