I have a site, in a folder called &#39;kb&#39;<br>you access it via <a href="http://webserver/kb">http://webserver/kb</a><br>it has a knowledge base. Inside this, is the index_html and I have some search pages...<br><br>---F_problemsearch---
<br>* a form for searching. It&#39;s put on the index_html page via tal:replace=&quot;structure here/F_problemsearch&quot;<br><br>contents:<br>&lt;form name=&quot;searchbyproblem&quot; action=&quot;ProcessSearch&quot;&gt;
<br>&lt;input type=&quot;text&quot; name=&quot;problem&quot; style=&quot;color:white; background-color:green;&quot;&gt;<br>&lt;button type=&quot;submit&quot; name=&quot;st&quot; value=&quot;Simple&quot;&gt;Simple&lt;/button&gt;
<br>&lt;/form&gt;<br>------<br>ProcessSearch is a parameterized python script containing:<br>if st == &#39;Simple&#39;:<br>&nbsp; return container.problemsearch(problem=problem)<br>------<br>problemsearch (note the missing F_) is the search results. example:
<br>&lt;tr tal:repeat=&quot;item here/SQL_search_problems&quot; tal:attributes=&quot;bgcolor python:test(path(&#39;repeat/item/even&#39;), &#39;#EEEEF3&#39;, &#39;#FFFFFF&#39;)&quot;&gt;<br>&lt;td tal:content=&quot;item/id&quot; valign=&quot;top&quot;&gt;ID&lt;/td&gt;
<br>&lt;td tal:content=&quot;item/title&quot; valign=&quot;top&quot;&gt;Title&lt;/td&gt;<br>&lt;td tal:content=&quot;structure item/problem&quot; valign=&quot;top&quot;&gt;Problem&lt;/td&gt;<br>&lt;td&gt;&lt;form name=&quot;selection&quot; action=&quot;
<span class="attribute-value">ShowJustOne</span>&quot;&gt;&lt;input type=&quot;hidden&quot; name=&quot;ID&quot; tal:attributes=&quot;value item/id&quot; value=&quot;42&quot;&gt;&lt;input type=&quot;submit&quot; value=&quot;view&quot;&gt;&lt;/form&gt;&lt;/td&gt;
<br>&lt;/tr&gt;<br>------<br>Clicking on the &#39;simple&#39; button, it changes the URL to <a href="http://webserver/kb/ProcessSearch?problem=new&amp;st=Simple">http://webserver/kb/ProcessSearch?problem=new&amp;st=Simple
</a>. Everything works as expected. However, now I want to add another level. example: <a href="http://webserver/kb/review">http://webserver/kb/review</a><br>and I want to change only the index_html, and search pages (so someone can review articles after they are submitted). I copied the search pages listed above in the new &#39;review&#39; folder. I changed the text of the button in &quot;problemsearch&quot; above to &quot;review&quot; instead of &quot;view. When I try it out, I go to 
<a href="http://webserver/kb/review">http://webserver/kb/review</a>. I type in my search, click &quot;simple&quot; and the URL changes to this: <a href="http://webserver/kb/ProcessSearch?problem=new&amp;st=Simple">http://webserver/kb/ProcessSearch?problem=new&amp;st=Simple
</a><br>I&#39;d&nbsp; like it to use the files in &#39;/kb/review&#39; before using the files in /kb and I thought that&#39;s what acquisition did (index_html behaves this way!) however, it&#39;s not doing it correctly. The only way I can get it to properly work is by changing the URL to this: 
<a href="http://webserver/kb/review/">http://webserver/kb/review/</a> (adding a trailing slash). This website is used internally by users who will be manually typing the URL. Is there some way I can get <a href="http://webserver/kb/review">
http://webserver/kb/review</a> to work as well as <a href="http://webserver/kb/review/">http://webserver/kb/review/</a> ?<br><br>-- <br>Thanks,<br>Derek Wilson<br>