Hi Guys, just wondering if anyone would be able to help me,
I am looking for away to make my site SEO friendly after I use jQuery to make the site ajax, now what I would like to do is make it so if someone goes to
http://www.mysite.com/medals/2010
instead of it showing the page that has no style or links etc...
It shows the what they would of seen if they where navigating from the home page.


Hi Russsell, You would
Hi Russsell,
You would normally do this sort of thing in .htaccess. For example, if the normal page URL is:
www.example.com/medals.php?year=2010
Then in .htaccess, you could use:
RewriteBase /RewriteRule ^medals/(.*)$ medals.php?year=$1
Hope this helps!
Cheers,
David.