• I’m getting a “No input file specified.” error whenever I try to access an archive or a page of my blog. I read the post on the forum about that suggested adding:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteCond %{REQUEST_URI} !/$
    RewriteRule (.*) $1\.php [L]
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)/$ /$1 [R=301,L]
    </IfModule>

    to .htaccess, but all that did was give me a 500 server error. Anyone have any other suggestions?

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘“No input file specified.” Error’ is closed to new replies.