Htaccess file in routing has duplicate entries

I do not think this will have any impact and i think it will only have a single duplicate entry however when following the SPA Wappler tutorial and recreating exactly as per the tutorial with content pages, the resulting .htaccess file has the following

## Wappler routing
RewriteEngine On
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(?:/)?$ index.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(?:/)?$ index.php [QSA,NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?a-page-test(?:/)?$ index.php [QSA,NC,L]
## End Wappler routing

Lines 6, 7 and 8, 9 are exact duplicates. With the first 2 instructions being overruled in Apache by the second 2 instructions, I doubt it would have any impact to the end result at all, but just figured i would bring it to the teams attention.

Community Page
Last updated: