That works on my new server... And I finally found the mistake : the rule AllowOverride All was not in the httpd.conf file. Anyway, thank you for your rule cause now I can see the phpinfo.php file!
On Mon, Jan 26, 2009 at 8:59 AM, Thomas VEQUAUD <[email protected]>wrote: > > No effect... I'm pretty sure the .htaccess file is totally transparent to > the Apache server whereas the httpd.conf and php.ini files seem quite > normal. Anyway, the Oracle DBA decided to use a more standard solution : > Apache + PHP with Zend without Oracle packaging. I hope this issue will be > resolved by the same way. > > > > On Fri, Jan 23, 2009 at 7:21 PM, Thomas VEQUAUD > <[email protected]>wrote: > >> >> >> On Fri, Jan 23, 2009 at 6:30 PM, Matthew Weier O'Phinney < >> [email protected]> wrote: >> >>> >>> > Here is my .htaccess : >>> > RewriteEngine on >>> > RewriteCond %{SCRIPT_FILENAME} !-f >>> > RewriteCond %{SCRIPT_FILENAME} !-d >>> > RewriteRule ^(.*)$ index.php/$1 >>> >>> Change the above line to: >>> >>> RewriteRule ^.*$ index.php [NC,L] >>> >>> and see if it has any effect >>> >>> > php_flag magic_quotes_gpc off >>> > php_flag register_globals off >>> >>> >> Hey Vermonster! ;) >> >> I'm no more at work, I'll try this on Monday... But I have the impression >> the .htaccess file is not used! : / >> Thank you >> >> >> -- >> Thomas VEQUAUD http://thomas.vequaud.free.fr/ >> Expert EPITECH en Ingénierie Informatique >> Tél : +33(0)6.50.39.28.10 Fax: +33(0)9.58.46.10.07 >> > > > > -- > Thomas VEQUAUD http://thomas.vequaud.free.fr/ > Expert EPITECH en Ingénierie Informatique > Tél : +33(0)6.50.39.28.10 Fax: +33(0)9.58.46.10.07 > -- Thomas VEQUAUD http://thomas.vequaud.free.fr/ Expert EPITECH en Ingénierie Informatique Tél : +33(0)6.50.39.28.10 Fax: +33(0)9.58.46.10.07
