https://bz.apache.org/bugzilla/show_bug.cgi?id=59815
Bug ID: 59815
Summary: different behaviour between 2.4.20 and 2.4.23 using
php as cgi with mod_rewrite and parameters sent as get
Product: Apache httpd-2
Version: 2.4.23
Hardware: PC
OS: Linux
Status: NEW
Severity: blocker
Priority: P2
Component: mod_rewrite
Assignee: [email protected]
Reporter: [email protected]
Apache 2.4 build with
#! /bin/sh
#
# Created by configure
"./configure" \
"--prefix=/usr/local/apache24" \
"--enable-so" \
"--enable-rewrite" \
"--enable-deflate" \
"--enable-headers" \
"--enable-proxy-fcgi" \
"--with-included-apr" \
"--enable-ssl" \
"$@"
Vhost-Configuration:
Listen 10163
<VirtualHost *:10163>
ServerName <domain>
ServerAdmin <mail>
DocumentRoot /path/to/docroot
<Directory /path/to/docroot>
Require all granted
RewriteEngine On
RewriteOptions InheritBefore
RewriteRule ^.*\.php(/.*)?$ fcgi://127.0.0.1:20155/path/to/docroot/$0
[L,P]
CGIPassAuth On
AllowOverride All
FallbackResource /index.php
DirectoryIndex index.php
</Directory>
</VirtualHost>
on 2.4.20: http://domain.com/index.php?p=1 -> everything ok
on 2.4.23: http://domain.com/index.php?p=1 -> results in a "file not found"
returnd from the fcgi-process.
missed i changes to be made in the configuration?
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]