php – 带.htaccess的漂亮网址

前端之家收集整理的这篇文章主要介绍了php – 带.htaccess的漂亮网址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个URL http://localhost/index.PHP?user = 1.当我添加这个.htaccess文件
Options +FollowSymLinks
RewriteEngine On

RewriteRule ^user/(.*)$./index.PHP?user=$1

我现在可以使用http:// localhost / user / 1链接.但是http://localhost/index.PHP?user = 1& action = update怎么样才能进入http:// localhost / user / 1 / update?

另外如何制作这个网址http:// localhost / user / add?
谢谢.对不起,我对.htaccess比较新.

你可以写这样的东西:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$/index.PHP?user=$1&action=$2 [L]
原文链接:https://www.f2er.com/php/137892.html

猜你在找的PHP相关文章