Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好日子伙计们,我需要你的帮助来重写这个 url。
这是我想做的两个重写。
.php1)即使我的文件保存为,我也想从 url 中取出.php
.php
2)我想重写下面的url
www.example/account/product.php?Sef=shoes&pid=3
对于这样的事情
www.example/account/product.php?Sef=shoes/pid/3
如果你能帮助我。它会很可爱。谢谢
对于你的第二个问题,你不需要 htaccess 来解析$_GET['Sef']你的服务器端。 根据php扩展试试这个
$_GET['Sef']
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L]