简体   繁体   中英

SEO Friendly URL (with .htaccess)

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

I would like to have an URL like this:

https://example.com/page/users 

OR

https://example.com/users 

Is there anyone who can help me?

Problem is solved with:

.htaccess:

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

So it is very simple.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM