Changeset 1268107
- Timestamp:
- 10/18/2015 07:15:41 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
permalink-fix-disable-canonical-redirects-pack/trunk/readme.txt
r1268106 r1268107 28 28 4. _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. 29 29 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] 35 33 36 34 5. 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>` 46 43 47 44 Changelog 48 45 --------- 46 ### 1.0.5 47 10/18/2015 Readme update 48 49 49 ### 1.0.4 50 50 10/18/2015 Compatibility update
Note: See TracChangeset
for help on using the changeset viewer.