We are using Simple Search in a subsection of our site and I have been notified that it is no longer working. Only part of our site uses EE and EE files reside in an “ee” subfolder. Index.php and “ee” are hidden from the urls using .htaccess and although not officially supported this is essential. Everything worked fine for a year and no changes have been made the the .htaccess file. But now performing a search just sends the user to the homepage.
A workaround has been found but I’m not sure how to generate this using Simple Search.
Currently the generated html is
<form method="post" action="http://www.example.com/ee/">If this is changed using Firebug to
<form method="post" action="http://www.example.com/ee/index.php">then the search works once again.
How would one generate
<form method="post" action="http://www.example.com/ee/index.php">?(and is this even possible with the “index.php”-removing .htaccess file in place?)