create multiple pages from one page, PHP -


i created webpage in changing string according url. example page name 'motivational-keynote-speaker-seattle-city.php' showing 'city' in place of city name. if change page name 'motivational-keynote-speaker-seattle-italy.php', italy shown in place of city name.

now problem on index page want link page, different different city name want open php page city name.

example:-

  <a href="motivational-keynote-speaker-seattle-washington.php">washington</a>   <a href="motivational-keynote-speaker-seattle-italy.php">italy</a>   <a href="motivational-keynote-speaker-seattle-london.php">london</a> 

on link click open

 motivational-keynote-speaker-seattle-city.php 

here city name change italy or london or washington.

given script named city.php , you're running apache, can use mod-rewrite. try putting .htaccess file

rewriteengine on rewriterule ^motivational-keynote-speaker-seattle-\w*.php city.php [l] 

Comments