Conversation
Notices
-
Embed this notice
@heluecht Let me look into it.
-
Embed this notice
@heluecht It looks like we need to add the B flag to the RewriteRule statment in the .htaccess file.
Not sure about nginx though.
-
Embed this notice
@hypolite I now realized that the problem isn't caused by the router. It's at the beginning where the pagename variable is set. I hope that you can solve this.
-
Embed this notice
@heluecht I just confirmed the B flag does the trick. You need to update the .htaccess-dist file and we'll need to add this change to the release notes because it needs to be applied to production files that we do not control (ping @tobias )
-
Embed this notice
@heluecht Here you go:
RewriteRule ^(.*)$ index.php?pagename=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA,B]
-
Embed this notice
@hypolite Can you provide a PR? I'm not sure where to add this B here:
RewriteRule ^(.*)$ index.php?pagename=$1 [E=REMOTE_USER:%{HTTP:Authorization},L,QSA]
-
Embed this notice
@hypolite Works!