Changes between Initial Version and Version 1 of Ticket #30340
- Timestamp:
- 11/14/2014 10:51:25 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30340 – Description
initial v1 10 10 11 11 Here is the .htaccess generated by WordPress when saving permalinks: 12 `# BEGIN WordPress 12 13 {{{ 14 # BEGIN WordPress 13 15 <IfModule mod_rewrite.c> 14 16 RewriteEngine On … … 19 21 RewriteRule . /blog/index.php [L] 20 22 </IfModule> 21 # END WordPress` 23 # END WordPress 24 }}} 25 22 26 23 27 Note the duplicate RewriteRule for index... 24 28 25 29 I revised the .htaccess file to: 26 `# BEGIN WordPress 30 31 {{{ 32 # BEGIN WordPress 27 33 <IfModule mod_rewrite.c> 28 34 RewriteEngine On … … 33 39 #RewriteRule . /blog/index.php [L] 34 40 </IfModule> 35 # END WordPress` 41 # END WordPress 42 }}} 43 36 44 37 45 Lo and behold! My redirect to an external URL worked.