我正在尝试创建这样的小网址:
site.com/abc123
去:
site.com/index.php?token=abc123
但无论我尝试什么,我都会不断收到重定向循环,或者它会尝试重定向到 index.php?token=index.php..
当前的 .htaccess 是:
Options +FollowSymLinks
Options -MultiViews
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?token=$1 [L]