
Hi,
I am on latest mybb , problem seems to be from lighttpd rewriting rules of Google SEO, maybe someone can help
Everything is working fine except search results URLs which has "&" of each URL which gives invalid response but it's supposed to be "?" instead and here is the log:
my lighttpd rules:
Problem is with search results having &highlight instead of ?highlight=
maybe anyone have solution for this problem
Thanks
I am on latest mybb , problem seems to be from lighttpd rewriting rules of Google SEO, maybe someone can help
Everything is working fine except search results URLs which has "&" of each URL which gives invalid response but it's supposed to be "?" instead and here is the log:
2021-02-19 17:12:43: (mod_rewrite.c.282) mod_rewrite invalid result (not beginning with '/') while processing uri: /forum/Thread-P0401-Exhaust-Gas-Recirculation-A-Flow-Insufficient-Detected&highlight=p0401
my lighttpd rules:
url.rewrite = (
"^/forum/([^&?]*)&([^?]*)$" => "https://example.com/forum/$1?$2",
"^/forum/([^&?]*)&([^?]*)\?(.*)$" => "https://example.com/forum/$1?$2&$3",
"^/forum/((?i)sitemap-([^./?]+)\.xml)(\?(.*)|)$" => "/forum/misc.php?google_seo_sitemap=$2&$4",
"^/forum/((?i)Forum-([^./?]+))(\?(.*)|)$" => "/forum/forumdisplay.php?google_seo_forum=$2&$4",
"^/forum/((?i)Thread-([^./?]+))(\?(.*)|)$" => "/forum/showthread.php?google_seo_thread=$2&$4",
"^/forum/((?i)Announcement-([^./?]+))(\?(.*)|)$" => "/forum/announcements.php?google_seo_announcement=$2&$4",
"^/forum/((?i)User-([^./?]+))(\?(.*)|)$" => "/forum/member.php?action=profile&google_seo_user=$2&$4",
"^/forum/((?i)Calendar-([^./?]+))(\?(.*)|)$" => "/forum/calendar.php?google_seo_calendar=$2&$4",
"^/forum/((?i)Event-([^./?]+))(\?(.*)|)$" => "/forum/calendar.php?action=event&google_seo_event=$2&$4",
)
Problem is with search results having &highlight instead of ?highlight=
maybe anyone have solution for this problem
Thanks
