tas2580 / seourls

phpBB Extension: URL rewriting for phpBB forums

Home Page:https://tas2580.net/downloads/phpbb-seo-url/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rewrite rules break theme's lightbox

spiritedsnowcat opened this issue · comments

Hi there,

It appears the rewrite rules used in this extension break my theme's lightbox. When the page tries to load "https://cooldown.dev/styles/ravaio/template/lg-fullscreen.min.js?assets_version=41", it returns a 404 error. After disabling the rewrite rule changes again, it resolves itself. Here're the rules I have:

RewriteBase /
RewriteRule ^(.*)-f([0-9]*)/mcp.php(.*) mcp.php?%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-f([0-9]*)/(.*)-t([0-9]*)-s([0-9]*).html viewtopic.php?f=$2&t=$4&start=$5&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*)/(.*)-t([0-9]*).html viewtopic.php?f=$2&t=$4&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*)/index-s([0-9]*).html viewforum.php?f=$2&start=$3&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*)/ viewforum.php?f=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*) viewforum.php?f=$2&%{QUERY_STRING} [L]

I'm not entirely sure which rule is breaking it, but it seems like it might be from adding "?assets_version=41" to the end of it. Any tips / suggestions would be appreciated. Thanks!

Fixed it?

RewriteBase /
RewriteRule ^(.*)-f([0-9]*)/mcp.php(.*) mcp.php?%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-f([0-9]*)/(.*)-t([0-9]*)-s([0-9]*).html viewtopic.php?f=$2&t=$4&start=$5&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*)/(.*)-t([0-9]*).html viewtopic.php?f=$2&t=$4&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*)/index-s([0-9]*).html viewforum.php?f=$2&start=$3&%{QUERY_STRING} [L]

RewriteRule ^(styles)($|/) - [L]
RewriteRule ^(.*)-f([0-9]*)/ viewforum.php?f=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-f([0-9]*) viewforum.php?f=$2&%{QUERY_STRING} [L]