Plugin Directory

Changeset 1268107


Ignore:
Timestamp:
10/18/2015 07:15:41 AM (10 years ago)
Author:
ccheney
Message:

Readme update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • permalink-fix-disable-canonical-redirects-pack/trunk/readme.txt

    r1268106 r1268107  
    28284. _Make sure the .htaccess file is setup properly._ The server requires that you convert end of line characters to UNIX format (LF). Be sure to add a hard return after the last directive. See additional-instructions.rtf for a step-by-step.
    2929
    30 ```
    31 RewriteCond %{REQUEST_FILENAME} !-d
    32 RewriteCond %{REQUEST_FILENAME} !-f
    33 RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    34 ```
     30`RewriteCond %{REQUEST_FILENAME} !-d`
     31`RewriteCond %{REQUEST_FILENAME} !-f`
     32`RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    3533
    36345. If for some reason you're using this plugin _outside_ of the Concentric/XO shared hosting enviroment (assuming Apache) use the following .htaccess rules:
    37 ```
    38 <IfModule mod_rewrite.c>
    39     RewriteEngine On
    40     RewriteBase /
    41     RewriteCond %{REQUEST_FILENAME} !-f
    42     RewriteCond %{REQUEST_FILENAME} !-d
    43     RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    44 </IfModule>
    45 ```
     35
     36`<IfModule mod_rewrite.c>`
     37    `RewriteEngine On`
     38    `RewriteBase /`
     39    `RewriteCond %{REQUEST_FILENAME} !-f`
     40    `RewriteCond %{REQUEST_FILENAME} !-d`
     41    `RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]`
     42`</IfModule>`
    4643
    4744Changelog
    4845---------
     46### 1.0.5
     4710/18/2015 Readme update
     48
    4949### 1.0.4
    505010/18/2015 Compatibility update
Note: See TracChangeset for help on using the changeset viewer.