Quote:
Originally Posted by saidev
I got that too, when a user click on "New Post" after they logged in, they get that error message, I found that if you remove the "/" at the end, it will work, but I don't expect my user to know how to to that. I've checked the .htaccess file, notice that rule does not have "/" when the string terminate. I guess is in the interal works of the plugin which I am not sure where to look....anyone?
|
I made a big BOO BOO when i uploaded the htaccess file
Everyone should edit their htaccess file and remove the existing search rewrite and replae it with
Code:
RewriteRule ^search-(.*).html$ search.php?do=$1 [L]
That's assuming that the URL is /search-getnew.html
if you use:/search-getnew.html/
then your htaccess should be this:
Code:
RewriteRule ^search-(.*).html/$ search.php?do=$1 [L]