我需要有关网址重定向的帮助,例如
旧网址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]
但它没有用。
答案 0 :(得分:0)
您可以在/sub-dir/.htaccess
:
DirectoryIndex index.php
RewriteEngine On
RewriteBase /sub-dir/
RewriteRule ^([0-9]+)/?$ index.php?id=$1 [QSA,L]