$_GET url - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: $_GET url (/showthread.php?tid=3905) |
$_GET url - taigaa - 2012-11-21 Hi, can you help me with one issue? I need to replace some elements on my site by an external service. But the CMS automaticly redirects urls like: http://www.example.com/?ym_phone=show&ym_i0=phone&ym_v0=12345 to the main page. So the script of those service does nothing. What can I do with it? RE: $_GET url - taigaa - 2012-11-23 Every url with a slug beginning with "?" symbol redirects to the main page. Is it wrong htaccess syntax or a limitation of the cms engine? RE: $_GET url - Carlos - 2012-11-23 Have you enabled canonical redirects (GSCANONICAL setting) in gsconfig? RE: $_GET url - shawn_a - 2012-11-24 ? is a querystring so your url is essentially webroot_default_index?querystring. or index.php?querystring You will have to have a special rewrite or redirect, so that those querystrings goto a new page. Or change the links to use an actual file, not an empty one. |