[SOLVED] Helicon Ape does not work on our site without www

Helicon Ape provides support for Apache .htacces and .htpasswd configuration files for Microsoft IIS.
User avatar
Posts: 5
Joined: 07 Sep 2012, 19:44

[SOLVED] Helicon Ape does not work on our site without www

07 Sep 2012, 19:47

We have Helicon Ape and our site does not work without the www prefix. I've tried the numerous rewrite conditions to make it auto point to www but none of them work. I've also made sure the non-www version in IIS is added to the list.

Does Helicon Ape just not support this?
Last edited by maliwik on 14 Sep 2012, 13:59, edited 1 time in total.

User avatar
Posts: 1264
Joined: 07 Mar 2012, 10:16

Re: Helicon Ape does not work on our site without www

09 Sep 2012, 19:55

Hello,

Here's the proven example from ISAPI_Rewrite 3 FAQ:

Code: Select all
RewriteEngine on

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]


Make sure mod_rewrite module is un-commented in httpd.conf

In case this wouldn't work, please, provide rewrite.log for the testing request. To enable logging, un-comment 2 corresponding lines in httpd.conf.

Regards
Andrew

User avatar
Posts: 5
Joined: 07 Sep 2012, 19:44

Re: Helicon Ape does not work on our site without www

10 Sep 2012, 13:08

It still doesn't seem to be working. Here's my .htaccess file for our site (I'm not too proficient in regular expressions so it might be inefficient):

# Helicon Ape version 3.0.0.76

RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_URI} ^/google.+\.html [NC]
RewriteRule .? - [L]

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]

RewriteRule ^businesses/([\d]+)/[\d\-a-zA-Z_]+\.html$ business-list.php?ac=details&business_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses/([\d]+)/[\d\-a-zA-Z_]+\.html$ business-list.php?ac=details&county_id=$1&business_id=$2 [L,QSA]

RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses\.html$ business-list.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses/page\-([\d]+)\.html$ business-list.php?county_id=$1&page=$2 [L,QSA]
RewriteRule ^business-list/page\-([\-\d]+)\.html$ business-list.php?page=$1 [L,QSA]

### News
RewriteRule ^news/([\d]+)/[\d\-a-zA-Z_]+.html$ news.php?ac=details&post_id=$1 [L,QSA]

### Articles
RewriteRule ^all-articles\.html$ articles.php?all=1 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles\.html$ articles.php?business_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles\.html$ articles.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles\.html$ articles.php?county_id=$1&business_id=$2 [L,QSA]

### Articles Paging
RewriteRule ^all-articles/page\-([\d]+)\.html$ articles.php?all=1&page=$1 [L,QSA]
RewriteRule ^articles/page\-([\d]+)\.html$ articles.php?page=$1 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/page\-([\d]+)\.html$ articles.php?business_id=$1&page=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/page\-([\d]+)\.html$ articles.php?county_id=$1&page=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/page\-([\d]+)\.html$ articles.php?county_id=$1&business_id=$2&page=$3 [L,QSA]

### Articles (Category)
RewriteRule ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?category_id=$1 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?business_id=$1&category_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?county_id=$1&category_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?county_id=$1&business_id=$2&category_id=$3 [L,QSA]

### Article Paging (Category)
RewriteRule ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?category_id=$1&page=$2 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?business_id=$1&category_id=$2&page=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?county_id=$1&category_id=$2&page=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?county_id=$1&business_id=$2&category_id=$3&page=$4 [L,QSA]

### Article Details
RewriteRule ^articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&article_id=$1 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&business_id=$1&article_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&county_id=$1&article_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&county_id=$1&business_id=$2&article_id=$3 [L,QSA]

### Article Details Paging
RewriteRule ^articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&article_id=$1&page=$2 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&business_id=$1&article_id=$2&page=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&county_id=$1&article_id=$2&page=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&county_id=$1&business_id=$2&article_id=$3&page=$4 [L,QSA]

### Article Details (Category)
RewriteRule ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&category_id=$1&article_id=$2 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&business_id=$1&category_id=$2&article_id=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&county_id=$1&category_id=$2&article_id=$3 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ articles.php?ac=details&county_id=$1&business_id=$2&category_id=$3&article_id=$4 [L,QSA]

### Article Details Paging (Category)
RewriteRule ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&category_id=$1&article_id=$2&page=$3 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&business_id=$1&category_id=$2&article_id=$3&page=$4 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&county_id=$1&category_id=$2&article_id=$3&page=$4 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ articles.php?ac=details&county_id=$1&business_id=$2&category_id=$3&article_id=$4&page=$5 [L,QSA]


### Events
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-events\.html$ events.php?business_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-events\.html$ events.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-events\.html$ events.php?county_id=$1&business_id=$2 [L,QSA]

### Event Details
RewriteRule ^events/([\d]+)/[\d\-a-zA-Z_]+\.html$ events.php?ac=details&event_id=$1 [L,QSA]
RewriteRule ^([\d]+)/[\d\-a-zA-Z_]+\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ events.php?ac=details&business_id=$1&event_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ events.php?ac=details&county_id=$1&event_id=$2 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ events.php?ac=details&county_id=$1&business_id=$2&event_id=$3 [L,QSA]


RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-attractions\.html$ attractions.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-lodging\.html$ lodging.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-restaurants\.html$ restaurants.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-organizations\.html$ organizations.php?county_id=$1 [L,QSA]
RewriteRule ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\.html$ counties.php?ac=details&county_id=$1 [L,QSA]
RewriteRule ^(includes) - [L]
RewriteRule ^([^.]+)\.html$ $1.php [L,QSA]



---------------------------

Here's the log:


69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (1) [perdir e:\websites\northwoodstoday2012\] init rewrite engine with /
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern .? to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (4) [perdir e:\websites\northwoodstoday2012\] RewriteCond: input='/' pattern='^/google.+\.html' => not-matched
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^businesses/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-businesses/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^business-list/page\-([\-\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^news/([\d]+)/[\d\-a-zA-Z_]+.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^all-articles\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^all-articles/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+-articles/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-articles/cat\-([\d]+)/[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+/page\-([\d]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-events\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-events\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-events\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^events/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([\d]+)/[\d\-a-zA-Z_]+\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county/([\d]+)/[\d\-a-zA-Z_]+\-events/([\d]+)/[\d\-a-zA-Z_]+\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-attractions\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-lodging\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-restaurants\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\-organizations\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^[\d\-a-zA-Z_]+/([\d]+)/[\d\-a-zA-Z_]+\-county\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^(includes) to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern ^([^.]+)\.html$ to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (5) [perdir e:\websites\northwoodstoday2012\] strip matching prefix: / ->
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (3) [perdir e:\websites\northwoodstoday2012\] applying pattern .? to uri
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (4) [perdir e:\websites\northwoodstoday2012\] RewriteCond: input='Off' pattern='(on)?' => matched
69.179.80.180 69.179.80.180 [10/Sep/2012:11:09:20] [www.northwoodstoday.com/sid#1166260367][rid#43028327/initial] (4) [perdir e:\websites\northwoodstoday2012\] RewriteCond: input='www.northwoodstoday.com' pattern='^(?!www\.)(.+)$' => not-matched


-------------------


It's weird because rewriting works perfectly when you have the www. If you omit the www, the site doesn't work at all (just shows a Cannot display webpage error).

User avatar
Posts: 1264
Joined: 07 Mar 2012, 10:16

Re: Helicon Ape does not work on our site without www

10 Sep 2012, 17:05

Hello,

Strange that you've specified the rule to be on top of your .htaccess file, but in the log it's the last one.
However, here're the lines that specify what happened with the request:

Code: Select all
applying pattern .? to uri
RewriteCond: input='Off' pattern='(on)?' => matched
RewriteCond: input='www.northwoodstoday.com' pattern='^(?!www\.)(.+)$' => not-matched


So initial request was already with "www" and it didn't match the pattern, so the log didn't help at all. I wonder if it's Ape that can help, because if it's IIS settings... there's not much we can do.

p.s. one day I used http://wwwizer.com/ to set up smth like this using DNS forwarding

Regards
Andrew

User avatar
Posts: 5
Joined: 07 Sep 2012, 19:44

Re: Helicon Ape does not work on our site without www

10 Sep 2012, 18:20

Could it be some other rule in my .htaccess conflicting with it?

I don't think it's our server - we have the address specified both with the www and without.

I just posted the partial log. The log is over 6mb from start to finish. I actually switched the www rewrite rule down to the bottom which is why the log shows that one at the bottom.

User avatar
Posts: 1264
Joined: 07 Mar 2012, 10:16

Re: Helicon Ape does not work on our site without www

10 Sep 2012, 18:30

To avoid conflicts, simply put it on top... it will be processed and applied first.

Regards
Andrew

User avatar
Posts: 5
Joined: 07 Sep 2012, 19:44

Re: Helicon Ape does not work on our site without www

14 Sep 2012, 13:25

I've tried removing all of the rules except the following:

RewriteEngine on
RewriteBase /

RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]


And it still doesn't work. Any ideas?

User avatar
Posts: 5
Joined: 07 Sep 2012, 19:44

Re: Helicon Ape does not work on our site without www

14 Sep 2012, 13:58

I've disabled and re-enabled Helicon Ape for the site in question. Now it seems to be working.

Return to Helicon Ape

Who is online

Users browsing this forum: No registered users and 24 guests