Hello,<br><br>i have setup zope3 framewrok behind apache and i&#39;d like to remove index.html from url in root directory and each subfolder. <br>Here are my Rewriterules :<br><br>#1: for redirect 80 port on 9673 Zope port :<br>
<br>RewriteRule ^/(.*)  <a href="http://localhost:9673/++vh++http:%{SERVER_NAME}:80/++/$1">http://localhost:9673/++vh++http:%{SERVER_NAME}:80/++/$1</a> [P,L]<br><br>#2: for removing index.html from url :<br><br>RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/<br>
RewriteRule ^index\.html$ http://%{HTTP_HOST}/ [R=301]<br><br><br>But the #2 doesn&#39;t work, still index.html in browser url, even with reversing order ( #2 before #1).<br><br>So, how can i do that ?<br><br>Thanks.<br><br>
<br><br>