如果用户输入
,更改网址的重写规则是什么?http://localhost/website/cool
然后应该改为
http://localhost/website/save.php?id=cool
答案 0 :(得分:2)
这应该做:
RewriteEngine On
RewriteRule ^(.*)$ save.php?id=$1
答案 1 :(得分:1)
抱歉,无法在通讯中格式化代码。这是为了回答这个问题:
请你告诉我什么是RewriteCond
这样的事情:
RewriteEngine On
RewriteCond %{REQUEST_URI} !/save.php
RewriteRule ^(.*)$ save.php?id=$1
如果URI中没有/save.php,那么它将重写。