我如何重写类似的东西
目录/index.php?abc=123
变成类似的东西
目录/用户/123
?
我index\.php\?abc\=[1-9]+
到目前为止,但我不知道如何将数字作为变量传递给user/...
.
我如何重写类似的东西
目录/index.php?abc=123
变成类似的东西
目录/用户/123
?
我index\.php\?abc\=[1-9]+
到目前为止,但我不知道如何将数字作为变量传递给user/...
.
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放入 DOCUMENT_ROOT 下的 .htaccess 中:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^abc=([^&]*) [NC]
RewriteRule ^dir/index\.php/?$ dir/user/%1 [L,R,QSA,NC]