简体   繁体   中英

How to write redirection rule in .htaccess using Regex

can someone tell me how to write redirection rule using regex in .htaccess file. I want

www.example.com/healthcare/practitioner/nikky.23 

to be redirectd to

www.example.com/healthcare/practitioner/#/nikky.23

Note that last parameter after '/' ie nikky.23 can change in different cases. Please help.

Try with RewriteRule:

RewriteRule (healthcare/practitioner/).* $1

If you want the last parameter to be without further slashes:

RewriteRule (healthcare/practitioner/)[^/]*$ $1

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