Jump to content

Remove Extensions "Not Found" Error??


phpinfo()

Recommended Posts

I am switching over to a new server and I edited the httpd.conf file to be similar to my old server. I have a mod rewrite rule to remove .php extensions, which does work - but when it rewrites to http://domain.com/index I get a Not Found 404 error. Just going to http://domain.com will bring up the file, but if I try to access any files, it will rewrite and remove the extension properly, but I will get a 404 error for that file.

 

I set DefaultType application/x-httpd-php - Not sure if this is an Apache or PHP problem.

 

 

Link to comment
Share on other sites

Follow up: I don't think this is an issue with the rewrite rule, as it is working as far as removing the extension. But I am getting a Not Found error thereafter.

 

Could this be an issue with the DefaultType or MIME

 

Rewrite rule, just in case:

  RewriteEngine On
RewriteBase /
Options Indexes FollowSymLinks
AllowOverride None
#
# Remove ".php" 
RewriteCond %{THE_REQUEST} ^GET\ ([^\?]+)\.php.*(.*)\ HTTP
RewriteRule (.+)\.php.*(.*)$ $1$2 [R,L]

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.