CodeIgniter Forums
What's problem with .htaccess? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: What's problem with .htaccess? (/showthread.php?tid=11987)



What's problem with .htaccess? - El Forum - 10-01-2008

[eluser]vps4[/eluser]
the .htaccess file in site's root

Code:
RewriteEngine ON

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]


I have a sub-directory "admin"
I put an other .htaccess file to protect admin panel

Code:
AuthType Basic
AuthName "Please Login"
AuthUserFile "/home/xxx/.htpasswds/public_html/aaa.com/admin/passwd"
require valid-user

when I visite http://aaa.com/admin/

the second .htaccess will NOT work. It redirect to http://aaa.com/

If remove the .htaccess file in the site root, admin directory .htaccess will work fine.

How can I do?


What's problem with .htaccess? - El Forum - 10-01-2008

[eluser]vps4[/eluser]
anybody help me?


What's problem with .htaccess? - El Forum - 10-02-2008

[eluser]Sumon[/eluser]
Though admin is a sub folder, try to access any controller (say http://aaa.com/admin/add_product/) and see what's happen. moreover, make sure you don't have http://aaa.com/admin.php file.