Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #30340


Ignore:
Timestamp:
11/14/2014 10:51:25 AM (10 years ago)
Author:
ocean90
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30340 – Description

    initial v1  
    1010
    1111Here is the .htaccess generated by WordPress when saving permalinks:
    12 `# BEGIN WordPress
     12
     13{{{
     14# BEGIN WordPress
    1315<IfModule mod_rewrite.c>
    1416RewriteEngine On
     
    1921RewriteRule . /blog/index.php [L]
    2022</IfModule>
    21 # END WordPress`
     23# END WordPress
     24}}}
     25
    2226
    2327Note the duplicate RewriteRule for index...
    2428
    2529I revised the .htaccess file to:
    26 `# BEGIN WordPress
     30
     31{{{
     32# BEGIN WordPress
    2733<IfModule mod_rewrite.c>
    2834RewriteEngine On
     
    3339#RewriteRule . /blog/index.php [L]
    3440</IfModule>
    35 # END WordPress`
     41# END WordPress
     42}}}
     43
    3644
    3745Lo and behold!  My redirect to an external URL worked.