[eluser]NachoF[/eluser]
Hey guys... the webhost Im using has very old apache1.3+php4 server... Im getting a Bad request error...it happens when I add the .htaccess file that works fine on my localhost
Code:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|resources|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
The error is when I try to access the site that its on a subfolder inside the html folder... but in the html folder theres already a different .htacess file that was there before... heres that one.
Code:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthUserFile /var/www/html/_vti_pvt/service.pwd
AuthGroupFile /var/www/html/_vti_pvt/service.grp
I havent a clue about this stuff.... any help is appreciated.