Problems with mod_Rewrite

Posted by Giorgi on Stack Overflow See other posts from Stack Overflow or by Giorgi
Published on 2010-04-05T10:44:51Z Indexed on 2010/04/05 10:53 UTC
Read the original article Hit count: 492

Filed under:
|
|
|
|

Hello,

Originally I had following .htaccess file:

php_value display_errors 1
php_value error_reporting 7

AddDefaultCharset utf-8

Options -Indexes
<Files ~ ".*\.(info|tpl)$">
    Order allow,deny
    Deny from all
</Files>

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]

Which triggered 500 internal server error, so I moved first two lines to the php.ini file.

after that, error disappeared, but redirect is not working, it simply redirects to the empty page, error log shows: file not found also, another log shows:

PHP Warning:  Unknown: open_basedir restriction in effect. File() is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp/:/usr/local/:/usr/bin) in Unknown on line 0

I tried to write in RewriteLog which triggered 500 server error again

A little help? Thank you in advance

P.S.

cPanel 11.24.5-STABLE (Build: 38506)
Apache version 2.2.15 (Unix)
MySQL version 5.0.85-community
PHP version 5.2.9
Operating system Linux

Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_fcgid/2.3.5

© Stack Overflow or respective owner

Related posts about mod-rewrite

Related posts about php