仅当 URL 为字符串和整数时,我才需要重写 URL
例如 :
http://domain.com/abc12
或者
http://domain.com/123
我尝试使用此规则
RewriteRule ([A-Za-z0-9]) file.php?key=$1 [L,QSA]
但这会重写 .html 和 .php ..etc 等文件
仅当 URL 为字符串和整数时,我才需要重写 URL
例如 :
http://domain.com/abc12
或者
http://domain.com/123
我尝试使用此规则
RewriteRule ([A-Za-z0-9]) file.php?key=$1 [L,QSA]
但这会重写 .html 和 .php ..etc 等文件