On Thu, Jun 20, 2024 at 7:08 PM Dave Wreski
wrote:
> Hi, I should add that I wrote the following to remove an errant question
> mark from the end of another URL, but it doesn't appear to work for the
> homepage.
>
> RewriteCond %{THE_REQUEST} /features\? [NC]
>
RewriteRule ^ %{REQUEST_URI} [L,R=3
Hi, I should add that I wrote the following to remove an errant question
mark from the end of another URL, but it doesn't appear to work for the
homepage.
RewriteCond %{THE_REQUEST} /features\? [NC]
RewriteRule ^ %{REQUEST_URI} [L,R=302,NE,QSD]
Thanks,
Dave
On 6/20/24 7:01 PM, Dave Wreski wro
Hi,
I have another challenging rewrite rule request, please. I'm trying to
remove a single question mark from a URL:
https://example.com/?
I've tried the following:
RewriteRule ^/\?$ / [L,R=301,QSD]
RewriteRule ^/\? /? [L,R=301]
RewriteCond %{REQUEST_URI} ^$
RewriteRule ^ /? [L,R=301,QSD]
I am experimenting a bit with output buffering with php-fpm[1]. In my default
setup I can't get this to work. Currently I am only getting this to work when I
add this to my virtualhost config:
ProxySet enablereuse=on flushpackets=on
I assume this will impact the rest of the website. Is th