After implementing an .htaccess-file in order to make the single pages of my website accessible with simple /folder/ links, certain (if not all) pages load twice.
I noticed this when a counter that counts the number of clicks a certain content on my site gets, incremented twice, whenever I visited the page.
This only happened after I created the .htaccess-file.
Is this a common problem or am I the only one experiencing this? What is there to be done in order to prevent this?
Besides some rewrite conditions, there's nothing in my .htaccess-file ...
AddDefaultCharset UTF-8
RewriteEngine on
#remove PHPSESSID
RewriteCond %{QUERY_STRING} PHPSESSID=.*$
RewriteRule .* %{REQUEST_URI}? [R=301,L]
#content
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?(content)/([0-9]+)/(.+)$ index.php?nav=single&ID=$2 [QSA,L]
#comments
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?(comments)/([0-9]+)/([0-9]+)$ index.php?nav=comments&ID=$2&catID=$3 [QSA,L]
#normal pages
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)$ index.php?nav=$1 [QSA,L]
# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

index.php, thereby incrementing the counter. Look at all the HTML elements that have ahreforsrcattribute - one of those will be the culprit. There is also a possibility that it'sfavicon.icothat is causing this, although that doesn't appear to match any of your rewrite rules. – DaveRandom Dec 19 '12 at 16:38