当前位置:网站首页>About the problem and solution of 403 error in wampserver
About the problem and solution of 403 error in wampserver
2022-07-05 13:42:00 【Zi Mu Lei】
Last night I wrote an article about wampserver After the installation is completed, the icon is yellow to solve the problem (http://blog.csdn.net/qq_32429977/article/details/50452529), I am here win7 There is no problem with the system , Many friends proposed win8 and win10 The display is normal after modification in the system , But you can't enter localhost and phpmyadmin, Tips 403 error , Roughly found the problem through remote :
1. The first question is , Namely wampserver Not switched to online :

As shown in the figure , Switch to online status OK!, however , After switching to online phpmyadmin Still can't get in , This shows that the main problem is not here , Let's move on :
2. We can find out apache It's set up alias Of . That's the alias ,OK, In this way, we can directly pass 127.0.0.1:8085/phpmyadmin This address visited , Test it , No problem at all , But in this case, it will be more troublesome for us to do the test later , So we'd better revise it , Click to open according to the figure below alias Set it up :
After opening the source code ;
<Directory "D:\wamp\apps\phpmyadmin3.4.10.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
We revise it as follows :
<Directory "D:\wamp\apps\phpmyadmin3.4.10.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
Be careful : Don't copy all , above DIRECTORY The address inside is your own installation path !!!
allow localhost Address to log in , After automatically restarting the service, you can enter , In this way, the problem is completely solved !!!
( Please correct any deficiencies !!!)
author : Little thunder
QQ:1132207176
边栏推荐
猜你喜欢
随机推荐
Fragmented knowledge management tool memos
Data Lake (VII): Iceberg concept and review what is a data Lake
真正的缓存之王,Google Guava 只是弟弟
Flutter 3.0更新后如何应用到小程序开发中
The real king of caching, Google guava is just a brother
【Hot100】34. Find the first and last positions of elements in a sorted array
MySQL --- 数据库查询 - 排序查询、分页查询
Flutter draws animation effects of wave movement, curves and line graphs
ELFK部署
ZABBIX monitoring
“百度杯”CTF比赛 九月场,Web:SQL
go map
[public class preview]: basis and practice of video quality evaluation
通讯录(链表实现)
Intranet penetration tool NetApp
Shuttle INKWELL & ink components
百度杯”CTF比赛 2017 二月场,Web:爆破-2
53. Maximum subarray sum: give you an integer array num, please find a continuous subarray with the maximum sum (the subarray contains at least one element) and return its maximum sum.
Matlab paper chart standard format output (dry goods)
法国学者:最优传输理论下对抗攻击可解释性探讨








