我需要有关 url 重定向的帮助,例如
旧网址http://www.example.com/sub-dir/index.php?id=1 到新网址 http://www.example.com/sub-dir/1/
谁能帮忙我需要.htaccess代码文件在/sub-dir/文件夹中
这是我尝试使用的代码:
RewriteRule ^/([0-9]+)/$ index.php?id=$1 [NC,L]
但它没有用。
我需要有关 url 重定向的帮助,例如
旧网址http://www.example.com/sub-dir/index.php?id=1 到新网址 http://www.example.com/sub-dir/1/
谁能帮忙我需要.htaccess代码文件在/sub-dir/文件夹中
这是我尝试使用的代码:
RewriteRule ^/([0-9]+)/$ index.php?id=$1 [NC,L]
但它没有用。