Changes between Initial Version and Version 1 of Ticket #28737
- Timestamp:
- 07/03/2014 04:54:41 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28737 – Description
initial v1 8 8 The error is due to the .htaccess file. 9 9 The htacess file looks like: 10 10 {{{ 11 11 # BEGIN WordPress 12 12 <IfModule mod_rewrite.c> … … 20 20 21 21 # END WordPress 22 22 }}} 23 23 24 24 I have changed the htaccess file to the following and it fixed the problem. (AKA, here is the recommended patch) 25 25 {{{ 26 26 # BEGIN WordPress 27 27 <IfModule mod_rewrite.c> … … 35 35 36 36 # END WordPress 37 37 }}}