diff --git a/guides/v1.0/install-gde/prereq/apache.md b/guides/v1.0/install-gde/prereq/apache.md
index ae579701645..dde271061da 100644
--- a/guides/v1.0/install-gde/prereq/apache.md
+++ b/guides/v1.0/install-gde/prereq/apache.md
@@ -163,19 +163,19 @@ Use this section to enable Apache rewrites and specify .htaccess
if
2. Locate the following block.
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ Allow from all
3. Change the value of `AllowOverride` to ``.
- Options Indexes FollowSymLinks MultiViews
- AllowOverride
- Order allow,deny
- allow from all
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride
+ Order allow,deny
+ Allow from all
4. Save the file and exit the text editor.
@@ -191,6 +191,19 @@ Use this section to enable Apache rewrites and specify .htaccess
if
Continue with the next prerequisite (PHP Ubuntu), or start your installation by going to Install Composer and clone the Magento repository.
+403 Forbidden Errors
+
+If you encounter 403 Forbidden errors when trying to access the Magento site, you may need to update your Apache configuration or your virtual host configuration. You should make sure that Apache is allowing visitors to the site via the Allow directive.
+
+For instance:
+
+
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride
+ Order allow,deny
+ Allow from all
+
+
Installing Apache on CentOS
Magento requires Apache use server rewrites. You must also specify the type of directives that can be used in .htaccess
, which Magento uses to specify rewrite rules.