我想为我的社交网络创建一个友好的 URL,我正在使用 phpDolphin 脚本,它是一个示例配置文件链接http://sample.com/index.php?a=profile&u=admin
我想让配置文件 URL 像这样http://sample.com/admin
我的 htaccess 文件
RewriteEngine on
RewriteCond %{request_filename} -f
RewriteRule ^(.*) $1 [L]
RewriteRule ^(([^/]*)+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&q=$3 [L]