在我的网站上,我试图将一个长 URL 重写为一个对 SEO 友好的 URL。
我有以下代码,但它似乎没有任何影响!但是,如果我输入dgadgdfsg
我的 htaccess,它会引发内部服务器错误。所以我假设它与重写规则有关。
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)/([^/]*)$ /missing-people/user-profile.php?userID=$1&firstName=$2&lastName=$3 [L]
我已确认 mod_rewrite 已打开。
这是当前网址
http://mysite.com/missing-people/user-profile.php?userID=1&firstName=Liam&lastName=Gallagher
这就是我想要的样子
http://mysite.com/1/Liam/Gallagher