Hi!
We're trying to construct a particular URL's for a submit a search form.
In details, we have a form in a joomla section which is implement with a phpscript using "Jumi Extension".
For example, we have our php script under the url
www.domain.com/hotels/
And when the forms shows the results of each hotel we want to go to the URL
www.domain.com/hotels/Hotel-name.html
Each Hotel name is defined by the database, so we can't insert all the Url's as custom Url in JoomSEF.
We've tried to change htaccess to transform this exact friendly URL to parameters (id, name, zone, ...)
RewriteRule ^/hotels/(.*).html$ index.php?option=com_content&view=section&layout=blog&Itemid=XXX&nameHotel=$1 [L]
Doing this we get a 404 error, but adding manually a custom Url with the name of a hotel works fine for that hotel. So, we can't do X000's custom urls...
How can we fix this problem!? Thank you!