How to execute a PHP web page without the .php extension in the URL?

后端 未结 6 631
野趣味
野趣味 2021-02-01 06:24

Sorry for noob question, can\'t understand from what I should search.

I\'m making a site with that page product.php?id=777
I\'d like it to be pro

6条回答
  •  失恋的感觉
    2021-02-01 07:14

    Create .htaccess file in your web root and enter following there:

    Options +FollowSymLinks
    RewriteEngine on
    
    RewriteRule ^product/([0-9]+)$ product.php?id=$1
    

提交回复
热议问题