Page 1 of 1

Re-write apache problems

PostPosted: 18. August 2013 19:44
by xamppliker
I have tried to use this inside the .htaccess file
Code: Select all
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R,L,NC]

## To internally redirect /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME}.php -f [NC]
RewriteRule ^ %{REQUEST_URI}.php [L]


It works to re-write to take the extension of the file out, but it isn't allowing me to insert data to my database which is configured from a different file, other than to get rid of this completely

Though it is allowing queries and results to be displayed on my website