简体   繁体   中英

redirect url in htaccess in codeigniter

My old URL is like below:

www.mywebsite.com/job-control/indexfull/533756/Unity3D-Game-Developer

For SEO friendly I was changed URL in route.php of CodeIgniter file. Present my URL is like this.

www.mywebsite.com/job-search/jobs/533756/Unity3D-Game-Developer

My doubt is if any one will enter old URL I need to redirect to new URL.

If any one would enter this URL

www.mywebsite.com/job-control/indexfull/533756/Unity3D-Game-Developer

I need redirect to

www.mywebsite.com/job-search/jobs/533756/Unity3D-Game-Developer.

I have 1000 of old URLs. How to redirect to new URL?

To redirect the entire directory of /job-control/indexfull/* to /job-search/jobs/* use:

.htaccess

RewriteRule ^job-control/indexfull/(.*)$ /job-control/indexfull/$1 [R=301,NC,L]

If you are just trying to redirect the old link to the new link, use:

Redirect 301 /job-control/indexfull/533756/Unity3D-Game-Developer /job-search/jobs/533756/Unity3D-Game-Developer

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM