想知道是否有人可以帮助我为我的网站编写一些 RewriteRule。
看看下面的 URL,看看我需要如何重写它们。
http://www.example.com/essays-and-reports/
does not need to be re-written, it is a physical folder on the web server.
http://www.example.com/essays-and-reports/business/
needs to rewrite to (root)/first_level_template.php
http://www.example.com/essays-and-reports/dynamic_name2
needs to rewrite to (root)/first_level_template.php
http://www.example.com/essays-and-reports/business/financial-reports/
needs to rewrite to (root)/second_level_template.php
http://www.example.com/essays-and-reports/blah/financial-reports/C_B_2413_Report_on_savings.php
needs to rewrite to (root)/final_level_template.php
请注意,无论尾部斜杠如何,规则都必须有效。总而言之,我需要将三个级别重新写入他们的相关模板。上述内容均不存在于服务器上,包括最终级别的 PHP 文件。唯一存在的是essays-and-reports 文件夹,它是网站的主文件夹。
我尝试了类似的方法,但在日志中出现编译错误。
RewriteRule ^([^/]+)/([^/]+)/?$ /second-level-template\.php [L]
如果你能帮我写出我需要的规则——我非常感激。
编辑: 这种代码有效,但它也重写了我不想要的essays-and-reports文件夹......
Options +FollowSymLinks
RewriteEngine On
RewriteBase /essays-and-dissertations/
RewriteRule ^[^/]+/[^/]+/[^/]+/?$ /final_level_template.php [L]
RewriteRule ^[^/]+/[^/]+/?$ /second_level_template.php [L]
RewriteRule ^[^/]+/?$ /first_level_template.php [L]