how to shorten url using htaccess

前端 未结 1 469
执念已碎
执念已碎 2020-12-10 10:11

Hello guys i need to shorten my url using htaccess like

Before

www.mysite.com/obj/task/profile/id/1568/username

1条回答
  •  感情败类
    2020-12-10 10:52

    Enable mod_rewrite and .htaccess through httpd.conf and then put this code in your .htaccess under DOCUMENT_ROOT directory:

    Options +FollowSymLinks -MultiViews
    # Turn mod_rewrite on
    RewriteEngine On
    RewriteBase /
    
    # from /obj/task/profile/id/1568/username
    # to /1568/username
    RewriteRule ^obj/task/profile/id(/.+)$ /$1 [R=302,L,NC]
    
    # from obj/task/page/city/41280/pageId/22/clubs//Test%20town
    # to 41280/22/clubs//Test%20town
    RewriteRule ^obj/task/page/city/([^/]+)/pageId(/.+?)/?$ /$1/$2 [R=302,L,NC,NE]
    

    0 讨论(0)
提交回复
热议问题