使用.htaccess重写规则子目录

时间:2014-11-07 05:39:55

标签: .htaccess rewrite cobra

我需要有关网址重定向的帮助,例如

旧网址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]

但它没有用。

1 个答案:

答案 0 :(得分:0)

您可以在/sub-dir/.htaccess

中使用此规则
DirectoryIndex index.php
RewriteEngine On
RewriteBase /sub-dir/

RewriteRule ^([0-9]+)/?$ index.php?id=$1 [QSA,L]