phpMyAdmin + CentOS 6.0 - Forbidden

后端 未结 4 1110
温柔的废话
温柔的废话 2021-02-12 10:29

I always get this message when I would like access my phpMyAdmin.

w3m localhost/phpmyadmin

Forbidden

You don\'t have permission to access /phpmyadmin/ on this          


        
4条回答
  •  南旧
    南旧 (楼主)
    2021-02-12 10:46

    Edit your httpd.conf file as follows:

    # nano /etc/httpd/conf/httpd.conf
    

    Add the following lines here:

    
        Order allow,deny
        Allow from all
    
    

    Issue the following command:

    # service httpd restart
    

    If your problem is not solved then disable your SELinux.

提交回复
热议问题