Question

url redirect for my anchor tag or onclick url is

http://localhost/re/jobs/view_jobs.php?id=14

how could i write url rewrite for this

Was it helpful?

Solution

if you want to use the id:

EDIT:
RewriteEngine on 
RewriteRule ^jobs/([0-9]+)?$ view_jobs.php?id=$1

This basically says ^(starts with)re/jobs/ then ([0-9]+) - any number

?$ - end of query

directs to view_jobs.php?id=$1 ($1 = first regex)

And the anchor tag would be

http://localhost/re/jobs/14

Or if you wanted to use the job title for SEO purposes

RewriteEngine on 
RewriteRule ^jobs/([a-zA-Z0-9]+)?$ view_jobs.php?name=$1

And the anchor tag would be

http://localhost/re/jobs/jobname
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top