php - major difference between url rewriting and hiding url -
after of researching confused difference between url rewriting,pretty url , hiding url...though 3 performs same functionality, difference between these 3 things?which useful seo ? seeing url can identify whether hiding url or url rewriting?
you seem have been confused numerous terms have been used in articles , tutorials have read.
hopefully out somewhat:
pretty url:
this called search-engine friendly url (because that's is), , like: users/benmajor/profile/
google places lot of weighting on url page accessed with, it's idea follow pattern.
url rewriting:
actual technology used convert pretty url system counterpart. example, using apache's mod_rewrite
module, can convert users/benmajor/profile
profile.php?user=benmajor
using following rewriterule
:
rewriterule ^users/[(.*)]/profile/?$ profile.php?user=$1
url hiding:
one's little more difficult answer, since don't know context in used, i'm going assume term means hide system url (i.e. profile.php?user=benmajor
) user.
Comments
Post a Comment