How do I make it so when a user clicks on,
http://localhost/jobwehave.co.za/job/1
They are shown the page for
http://localhost/jobwehave.co.za/job?=1
But the url still says
http://localhost/jobwehave.co.za/job/1
I am using mod_rewrite in an .htaccess file at the root of the site.
Try this,
RewriteRule ^jobwehave.co.za/job/(\d+)$ jobwehave.co.za/job?id=$1
Rick.