php - Rewrite URL for hyphens on URL -



php - Rewrite URL for hyphens on URL -

i trying enable mod_write's rewrite url , not able work hyphens in url format. please assist me on this.

www.domain.com/username/lord-voldermort

redirect

www.domain.com/user.php?username=lord voldermort

this should work:

rewriterule ^username/([a-z0-9\-]+)$ /user.php?username=$1 [qsa,nc,l]

php mod-rewrite

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -