Hey Adam,
Ok if you want to do this it isn't really Prosper202 that will do it, but more so how you setup your landing pages.
If you want the www.domain.com/keyword/ like that, put this .htaccess file in your root directory. www.domain.com/.htaccess
|
Quote:
|
|
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L]
|
ok what this is going to do is REDIRECT, EVERYTHING to index.php.
So even if you type in for instance, mydomain.com/test/test/
the file that is going to load is the mydomain.com/index.php
--
You have now re-routed everything, so now on your destination urls you can send traffic to, (with google adwords for instance)
|
Quote:
|
|
DESTINATION URL would look like this
www.mydomain.com/{keyword}/
|
Now the keyword is your URL, google is dynamically placing it.
That should do it!
|
Quote:
|
|
To make it work with P202 you will have to do it like this
Hey Adam,
Ok if you want to do this it isn't really Prosper202 that will do it, but more so how you setup your landing pages.
If you want the www.domain.com/keyword/ like that, put this .htaccess file in your root directory. www.domain.com/.htaccess
[quote]
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.php [L]
|
ok what this is going to do is REDIRECT, EVERYTHING to index.php.
So even if you type in for instance, mydomain.com/test/test/
the file that is going to load is the mydomain.com/index.php
--
You have now re-routed everything, so now on your destination urls you can send traffic to, (with google adwords for instance)
|
Quote:
|
|
DESTINATION URL would look like this
www.mydomain.com/{keyword}/?t202id=xxxxx&t202kw={keyword}
|