Create blog post links similar to a folder structure

前端 未结 2 1537
再見小時候
再見小時候 2020-11-28 16:33

I am currently working on a blog where I would like to create links to my individual articles in the following form:

http://www.mysite.com/health/2013/08/25         


        
2条回答
  •  猫巷女王i
    2020-11-28 17:00

    This is called Semantic URLs, they're also referred to as slugified URLs.

    You can do this with the .htaccess command RewriteURL

    Ex:

    RewriteURL ^(.*)$   handler.php?path=$1
    

    Now handler.php gets /health/2013/08/25/some-random-title and this is your entry point.

提交回复
热议问题