SEO Friendly URL (with .htaccess)

前端 未结 1 1699
野性不改
野性不改 2021-01-24 03:01

I would like to add friendly URL\'s to my website. But I have one problem. I\'ve never used .htaccess.

My link:

https://example.com/index.php?page=users
         


        
相关标签:
1条回答
  • 2021-01-24 03:46

    Problem is solved with:

    .htaccess:

    RewriteEngine On
    RewriteRule ^([^/\.]+)/?$ index.php?page=$1
    

    So it is very simple.

    0 讨论(0)
提交回复
热议问题