Forum Moderators: phranque
/keyword.html -> /scripts/search.cgi?query=keyword
RewriteEngine On
RewriteCond %{REQUEST_URI} \.html$
RewriteRule ^([^/]*)\.html$ /intro/search.cgi?query=$1 [L]
/docs/nonkeyword.htm(but I suspect this is a variation of (1).
\.html$should match only .html suffixes?
/keyword.htmlthat exist in the root, and nowhere else. What have I misunderstood? My server is using Apache 2.
AcceptPathInfo Off
Options -MultiViews
options +FollowSymlinks
-FollowSymlinks, but then I just get the Apache 2 Test Page. I see there are some other posts [google.co.uk] on the subject too.
AcceptPathInfo off
Options +FollowSymLinks -MultiViews
#
RewriteEngine On
#
RewriteRule ^([^/]+)\.html$ /intro/search.cgi?query=$1 [L]
Options -MultiViewsline is not disabling Content-Negotiation, in which case, how could this be tested? I don't have root access to the server. I tried looking through phpinfo() for a clue.