2013-04-22, 03:47:02
(2013-04-19, 04:21:28)dianajo Wrote: I think I have the fancy urls *almost* completely conquered BUT there is a glitch in how the URL is rendered which I can't say is or is not rewrite rule related or script related.
Not rewriterule related.
A quick patch for your setup (custom permalink ending in .html, but GS Blog using GS' usual fancy urls):
Edit blog/class/primary/Blog.php, find this:
Code:
$url = find_url($blogurl, $data->parent);
Just below, insert this line:
Code:
$url = str_replace('.html','/', $url); // Carlos' dirty patch