.htaccess - Apache RewriteRule in virtual-host(Apache) -


i want rewrite following url:

http://www.example.com/bengaluru/cantonment

to

http://www.example.com/bengaluru/cantonment-hrbr/6238393

i wrote :

rewriteengine on rewriterule  `^(.*)/cantonment  $1/cantonment-hrbr/6238393 [r,l]` 

why isn't working?

try following:

rewriteengine on rewriterule ^bengaluru/cantonment/(.*)$ /bengaluru/cantonment-hrbr/6238393/$1 [r,l] 

Comments

Popular posts from this blog

css - I want to align grid in center -

Contact Form PHP Email Script -

python - SWIG function not printing output -