You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following line unnecessarily replaces all occurrences of * with (.*), which means that the URI blog(.*) will be replaced with blog(.(.*)), which is obviously not the same thing.
The following line unnecessarily replaces all occurrences of
*
with(.*)
, which means that the URIblog(.*)
will be replaced withblog(.(.*))
, which is obviously not the same thing.seo/src/services/RedirectsService.php
Line 239 in 0c16162
Can it please be either fixed or removed? My suggestion would be simply:
return '#^' . str_replace('/', '\/', $uri) . '#';
SEO version: 3.3.0
The text was updated successfully, but these errors were encountered: