php - create clean url from ID but show name instead of ID -



php - create clean url from ID but show name instead of ID -

i trying create htaccess file clean urls

i have id , articlename columns in database

i trying creat clean urls : localhost/article.php?id=50 localhost/article/articlename/

is possible htaccess file?

i have code in article.php file

$article=$_request['article']; $getarticle = $db->get_rows("select * articles id=$article");

i have in htaccess file:

rewriterule ^article/([^/]*)$ /article.php?id=$1 [l]

there's no way utilize apache rewrite convert clean url numeric database id, best way accomplish add together new column database clean url value , utilize query string value instead.

then thing need alter in code utilize new column in sql query clause instead of id.

php apache .htaccess

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -