[phpBB3] Disabling Magic SEO for Mobile Site
[phpBB3] Disabling Magic SEO for Mobile Site
Trouble is that when I click on any link, Magic SEO's rewrite rules (contained in /.htaccess) cause a redirection so that other files in my "/forum/mo/" directory cannot be accessed.
For example:
The file:
"http://www.delica.ca/forum/mo/index.php?plat=html"
... gets rewritten by to:
"http://www.delica.ca/forum/index.php?plat=html"
Is there a simple rule that I can place at the beginning of my "forum/.htaccess" file that says "disregard all Rewrite Rules if (and only if) the URL link is within the "/forum/mo/" directory?
Thanks!
Mark
Delica Canada
Re: [phpBB3] Disabling Magic SEO for Mobile Site
Code: Select all
if(!defined('ADMIN_START') && strpos($_SERVER['REQUEST_URI'], '/forum/mo/') === false) include($phpbb_root_path . 'includes/magic_seo_url.'.$phpEx);
Re: [phpBB3] Disabling Magic SEO for Mobile Site
Delica Canada