Mod_rewrite causing 404 error?

I think you might be trying to do it backwards. Try something like this: RewriteCond %{REQUEST_FILENAME}! -s RewriteCond %{REQUEST_FILENAME}!

-d RewriteCond %{REQUEST_FILENAME}! -f RewriteRule ^(.*)$ $1. Php nc.

Turn on MultiViews with Options +MultiViews This will work not only with . Php files but with all files the client claims to accept in the request. See here.

Note that wrong-but-working configurations in Apache have given a bad name to MultiViews in the past, see here to make sure you have Apache correctly configured. If you want to use rewrite rules, I'd do this instead (untested): RewriteCond $0! \.

A-zA-Z0-9+$ RewriteCond %{REQUEST_FILENAME}! -d RewriteCond %{REQUEST_FILENAME}! -f RewriteRule ^.

*$ $0. Php QSA The QSA flag is necessary in order for you not to lose the query string.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions