FAQ: Can I change the rewriting-prefix "PPF"?
When you did take a closer look at the URLs that our ASP functions generate, you will have
noticed that the string "PPF" is always inserted there:
http://www.mywebstore.com/PPF/pid/20001/product.asp
In the file ppfhelpers.asp (this file contains our ASP functions), this
string is defined as a constant:
Const cPPFDelimiter = "PPF"
This string is used by PortalPageFilter to decide whether or not to process a certain page
request. It acts as a path/querystring data separator.
In the current version (1.0), we do not
support other delimiters than "PPF". In a future release you will be able to customize this
prefix. Right now, changing the constant will result in PortalPageFilter not processing
rewritten URLs.
|