I am facing an issue during customization 开发者_运维百科of a URL. Here is what I need:
http://xyz.com/home/jsjobs/jobseeker/list_jobs/57
I want to remove home from all URLs which has home just after my domain name (xyz.com in this case). So, what I want to look like my URL in address bar is:
http://xyz.com/jsjobs/jobseeker/list_jobs/57
How can I do this using htaccess?
RewriteRule ^home/(.*)$ http://www.your-url.ext/$1
精彩评论