我有一个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比较新.
你可以写这样的东西:
原文链接:https://www.f2er.com/php/137892.htmlRewriteEngine On RewriteRule ^([^/]*)/([^/]*)$/index.PHP?user=$1&action=$2 [L]