![]() | | ||||||||
| | #1 |
| HyperActive Warrior War Room Member Join Date: Mar 2009 Location: Germany
Posts: 164
Thanks: 218
Thanked 32 Times in 27 Posts
|
Hi fellow warriors, I'm not quite sure how to proceed with a tracking script which uses a mod_rewrite with htaccess. For each link I want to track, the script gives me a URL like www.mydomain.com/recommends/XXX. The paths and directories are set up ok, mod_rewrite is enabled. The htaccess-code which came with the script is as follows: Code: RewriteEngine on RewriteBase /recommends RewriteRule ^/?(.*) /go/go.php/$1 [QSA] By trial and error, I found that when I change the last line to Code: RewriteRule ^/?(.*) /go/go.php/$1 [R,QSA] Now, what I don't understand:
![]() Any help appreciated, milkyway |
| Blog and newsletter owners: Publish quality articles by Dr. Mani - for free - Never miss an opportunity to be fabulous. | |
| | |
| | #2 |
| Warrior Member Join Date: Oct 2009 Location: Nashville, TN - Costa Rica
Posts: 12
Thanks: 0
Thanked 2 Times in 2 Posts
|
Not sure but an alternate way to track the clicks is to use js. this is code i use. Code:
<script language="JavaScript" type="text/javascript">
<!--
function trackclick(id) {
if(document.images){
(new Image()).src="/wp-content/plugins/munkytoplist/out.php?id="+id;
}
return true;
}
// -->
</script> |
| | |
| | |
| | #3 |
| HyperActive Warrior War Room Member Join Date: Mar 2009 Location: Germany
Posts: 164
Thanks: 218
Thanked 32 Times in 27 Posts
|
Hi munkyscripts, thanks for your answer! ![]() I already have a tracking script which allows me to track what I need and displays everything very nicely. It's based on JavaScript, too, but does some other fancy stuff which I couldn't program myself. I was just wondering about how to proceed with the mod_rewrite, in particular if I can mess anything up when I add "R" and "L" tags, and if I should use temporarily or permanently moved redirects. As I said, I'm new to this htaccess stuff and am just not sure how to proceed... Thanks for your help -- much appreciated, milkyway |
| Blog and newsletter owners: Publish quality articles by Dr. Mani - for free - Never miss an opportunity to be fabulous. | |
| | |
![]() |
|
| Tags |
| forced, htaccess, modrewrite, redirect |
| Thread Tools | |
| |
![]() |