这是我的 .htaccess :
RewriteEngine on
RewriteBase /site
RewriteCond %{request_filename} -f
RewriteRule ^(.*) $1 [L]
RewriteRule ^([a-z]+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&u=$3 [L]
如果有人访问 www.mysite.com/johndoe htaccess 将他/她发送到此链接 index.php?a=profile&u=johndoe,我正在尝试以这种方式使用短网址,这样做的最佳方法是什么?我确实阅读了 htaccess 教程并尝试了不同的方法但失败了:/