我有以下链接:
www.website.com/profile.php?user=Test
我想将链接更改为:
www.website.com/Test
用户名在/
没有任何额外乱码的情况下。
我在我的 .htaccess 文件中设置了这个,但它不起作用。为什么?
Options +SymLinksIfOwnerMatch
RewriteEngine on
RewriteBase /website
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ profile.php?user=$1 [R,L,QSA]
谢谢。