我需要像这样的网址部分
www.example.com/education/tutorial/php.html
to
MainFolder=education
SubFolder=tutorial
PageName=php
和
www.example.com/jobs.html
to
MainFolder=null
SubFolder=null
PageName=jobs
这两种情况如何处理。
我在 .htaccess 中使用了以下代码
RewriteRule ([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+).html$ Pages.php?Page=$3&SubFolder=$2&MainFolder=$1
RewriteRule ([a-zA-Z0-9-]+).html$ Pages.php?Page=$1
但它在这两种情况下都不起作用。仅适用于一个。
可能吗?
提前致谢