I am looking to convert a website to flat HTML however the issue is that the
website is mainly driven through query strings.
An example would be the homepage for English & Spanish
English -
www.example.com/homepage.do?actionName=language&language=en&country=gb
Spanish -
www.example.com/homepage.do?actionName=language&language=es&country=ES
Ideally I need to save the html as 2 files named
homepage.do?actionName=language&language=en&country=gb
homepage.do?actionName=language&language=es&country=ES
I have downloaded HT Track however this downloads the html files as
homepage0ed7.html
homepage21fd.html
I have tried added an MD5 hash of the query string to the structure eg
%h%p/%n%q.%t%Q
However it still produces
homepage0ed7.html0ed7d583939b24866e2c7fd019120777
homepage21fd.html21fd5f8a328518b940e43adb6907e472
Ideally I would like full query string in the file name or something like
homepage.html0ed7d583939b24866e2c7fd019120777
homepage.html21fd5f8a328518b940e43adb6907e472
|