0 Members and 1 Guest are viewing this topic.
// Get the query string of the passed URL $params = array(); $url_parts = parse_url(str_replace(array(',', '&', ';'), array('=', '&', '&'), $url));
// Get the query string of the passed URL $params = array();//> modify by PortaMx $url_parts = parse_url(str_replace(array(',', '&', ';'), array('=', '&', '&'), str_replace($boardurl .'/index.php/', $scripturl .'?', $url)));
// Parse the url $url_parts = parse_url(str_replace($boardurl, '', $_SERVER['REQUEST_URL'])); if (empty($url_parts['path']) || $url_parts['path'] == '/') return;
// Parse the url//> modify by PortaMx if(strpos($_SERVER['REQUEST_URL'], $boardurl) !== false) { $url_parts = parse_url(str_replace($boardurl, '', $_SERVER['REQUEST_URL'])); if (empty($url_parts['path']) || $url_parts['path'] == '/') return; } else return;
*lol* ... no, no .. we have enough to do with the next major release of portamx.# categories and articles# designed front page# download managerand mutch more ...I think, that is a long run Fel
RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*) /index.php