Hi all again, I could not find any tools online for this problem. There TUT's out there on how to make .htaccess files but even then they did not say what tools they are useing . So i just opened the file with notepad and had a look inside and found the code already in there.
Code:
# -FrontPage-
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthUserFile /home/XXXXXXXX/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/XXXXXXXX/public_html/_vti_pvt/service.grp
AuthName XXXXXXXX.com.au
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
I looked in all the _vti files to find a .htaccess in each one also they only had this code in them:
Code:
# -FrontPage-
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthUserFile /home/XXXXXXXX/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/XXXXXXXX/public_html/_vti_pvt/service.grp
The only bit of code that I can see, that might be stopping this code working are these 2 lines:
Code:
AuthName XXXXXXXX.com.au
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
Or should i add this code to the rest of the other .htaccess files:
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
[/CODE]
Any input on how to get this to work I would be ever so great full.
Bookmarks