0

我在 htaccess 文件中写了 url 重写

RewriteRule ^([^/]+)/subject/([^/]+)/$ subjectlist.php?dept_id=$1  

但不工作我写为 htaccess 文件中的其他链接

RewriteRule ^subjects/$ subject.php,RewriteRule ^([^/]+)/([^/]+)/$  chapter.php?course=$2

请帮忙

4

1 回答 1

1

尝试逐行编写规则

RewriteRule ^subjects/$ subject.php
RewriteRule ^([^/]+)/([^/]+)/$  chapter.php?course=$2
于 2012-07-18T05:35:58.840 回答