Way To Access Phpmyadmin When Codeigniter is Installed In The Server .htaccess,Codeigniter,mod-rewrite,phpMyAdmin Way To Access Phpmyadmin When Codeigniter is Installed In The Server
Codeigniter will block access to phpMyAdmin installed on subdirectory.
Problem
www.mysite.com www.mysite.com/phpMyAdmin which currently inaccessible and just showing ci's default 404 error page
What should you do to able to access phpMyAdmin?
Answer is pretty simple. Your htaccess is not poking a hole through to let access to phpMyAdmin. Fix the htaccess like below
RewriteEngine on RewriteCond $1 !^(phpMyAdmin|index\.php|robots\.txt) RewriteRule ^(.*)$ index.php?/$1 [L]
Then you are good to go.
0 Response to "Way To Access Phpmyadmin When Codeigniter is Installed In The Server"
Posting Komentar