I've just installed Wamp and I'm getting 403 access denied error when I try to access http://localhost.
I've checked my apache configuration file and it has the line Allow from 127.0.0.1 in both <Directory /> and <Directory "c:/wamp/www/"> sections.
So why the access to root directory is forbidden for localhost?!
403 error in accessing localhost after wamp installation, despite having "Allow from 127.0.0.1" in apache conf
2.3k Views Asked by Alireza Mirian At
1
There are 1 best solutions below
Related Questions in LOCALHOST
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
- Connect to localhost:3000 from another computer | expressjs, nodejs
- How do you run a javascript outside of the localhost directory with requirejs?
- error in python mysql where clause
- To connect to Remote Desktop connection via local system
- Joomla password reset not working
- multiple submit button in python
- Angular's $cookies only work on 'localhost'
- Why can't I connect to a local server using phantomjs / casperjs
- Connecting to localhost:8080 using Google Chrome
- Fetching data from local mysql using angular not working
- Vagrant localhost issue
- YouTube IFrame API - Untrusted Origin: Null
- R rvest connect with local host
- Unable to connect to localhost Apache Ubuntu
Related Questions in WAMP
- Many errors in WAMP for php on a specific PC
- Wamp: The configuration file contains a syntax error on line 24
- Memcached on Windows (wamp) with Laravel
- How to access WAMP Server form everywhere?
- Failed to load resource: the server responded with a status of 403 (Forbidden)
- Unable to Update PHP Version
- WAMP 2.5 not properly seated on the WIN XP 32 BIT Machine
- Need help finding a bug with jquery $(document).ready() not working properly in firefox
- WAMP or XAMPP alternative that has Imagick already included
- Running php file asks for download instead of executing in apache 2.5?
- Getting NotFoundHttpException when accessing a image file in uploads directory in Laravel 5.1
- my wampserver 2.5. Projects was not opening projects
- Symfony on WAMP produces error "The session id is too long or contains illegal characters"
- Run server in cmd in Windows
- PHP file is not executing code
Related Questions in HTTP-STATUS-CODE-403
- SSL certificate error 403.13 in IIS 7.5
- VVV 403 Forbidden error (vagrant)
- Error 403 when posting on Facebook a Joomla URL for multilingual site
- One of the controllers return 403 after publishing
- Ajax Call Returns 403 From Asp
- W7, apache, php: 403 Forbidden You don't have permission to access /phptest/phpinfo.php
- Google Webmaster API - Mark crawlerros as fixed
- file_get_contents won't return the source code
- 403 Error for user verification (API)
- 403 Forbidden Error with Wordpress
- Cordova Android App can't post 403 Forbidden
- AJAX POST 403 Permission Denied Error - Even though I am sending auth headers
- Python 3.5 urllib.request 403 Forbidden Error
- Prestashop 1.7.0.3-1.7.0.2 Fresh Install 403 Error
- Complicated Wordpress scenario trying to get https up and running
Related Questions in ACCESS-DENIED
- Magento SOAP Access denied
- Powershell Start-Process : This command cannot be executed due to the error: Access is denied
- How to set adminstrator privilege using manifest for Windows 10?
- Unable to clone a git repo
- Access Denied when trying to create a key in registry
- Are 'rajivratn'@'%' and rajivratn@localhost refer to same user in MySQL?
- Error while uploading .xlsx file using ExcelDataReader
- Redirects in Django
- Access is Denied When Renaming Folder
- Get permission denied error when trying to remove file
- VK API, access denied for post on wall of a community, fail WALL Permissions
- C# UWP Geolocation, access denied
- How can I add .lnk file to the SVN repository on the network volume?
- command prompt commands (MOVE)
- CreateProcess error=5, Access is denied while mysql database backup using processbuilder in java
Related Questions in APACHE-CONFIG
- Apache Config setProperty Method is it write in memory or is it rewrite old configuration?
- Whats the difference between 127.0.0.1 and ::1
- installing and configuring symfony 3.2
- redirect to subfolder and then hide subfolder from url
- How to configure Symfony project to listen to port 80 of Web Server
- trying to set up my http.conf file for ruby on rails
- Get a 404 Error when clone, pull mercurial repository
- Allow anonymous access to parts of a secured Subversion repository
- How to check mod_headers and mod_expires modules enabled in apache
- Setup Dynamic Virtual Host (Apache2 on Ubuntu)
- Redirecting to a sub folder and then removing the subfolder from the url while loading index.php
- How to remove port number from an url?
- Apache Server alias - Rewrite rule Zend Framework not working
- Optimal apache configuration
- Multiple Django projects, same domain name, same server apache
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Depending on the OS, Apache may be binding to IPv6 address, so the
localhostis recognizing as::1instead of127.0.0.1.You have to add
Allow from ::1instead ofAllow from 127.0.0.1in apache config file.NOTE: Problem can be solved also if you add
Allow from allto root directory section in http config file, but it's not a good idea because this way your web root became accessible from any computer in the network you are.