1

我需要有关 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]

但它没有用。

4

1 回答 1

0

您可以在以下位置使用此规则/sub-dir/.htaccess

DirectoryIndex index.php
RewriteEngine On
RewriteBase /sub-dir/

RewriteRule ^([0-9]+)/?$ index.php?id=$1 [QSA,L]
于 2014-11-07T07:27:09.830 回答