.htaccess RewriteRule用于子目录

时间:2016-07-28 23:04:55

标签: apache .htaccess mod-rewrite url-rewriting

我有网站,例如123.123.123.123/subdirectory/我想改写 123.123.123.123/subdirectory/page/123123.123.123.123/subdirectory/page.php?id=123

我已经创建了.htaccess文件:

RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^page/(.*)$ page.php?id=$1 [NC,L,QSA]

但它不起作用(重写)。

1 个答案:

答案 0 :(得分:0)

使用此规则,它将起作用。

RewriteRule ^123\.123\.123\.123/subdirectory/page/123$ /123.123.123.123/subdirectory/page.php?id=123&%{QUERY_STRING}