Apache2 mod_rewrite,处理URL末尾的可选“/”

我正在尝试托pipe一个自定义页面,将其设置为我的服务器上的主页。

页面的真实path是example.com/start.html

但是,我不希望在我的主页中使用这个丑陋的URL,所以我试图让path是example.com/start/

我的.htaccess文件内容是:

<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^start\/?$ start.html [NC,L] </IfModule> 

这会使example.com/start正确redirect,但是example.com/start/会导致404错误(强调URL最末尾的斜线)。 我得到的错误是:

 The requested URL /start.html/ was not found on this server. 

我相信我在RewriteRule中的正则expression式是正确的(它应该接受“开始”或“开始/”,所以我不确定问题是什么。

我将不胜感激这个问题的任何帮助。