Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 htaccess 文件中写了 url 重写
RewriteRule ^([^/]+)/subject/([^/]+)/$ subjectlist.php?dept_id=$1
但不工作我写为 htaccess 文件中的其他链接
RewriteRule ^subjects/$ subject.php,RewriteRule ^([^/]+)/([^/]+)/$ chapter.php?course=$2
请帮忙
尝试逐行编写规则
RewriteRule ^subjects/$ subject.php RewriteRule ^([^/]+)/([^/]+)/$ chapter.php?course=$2