Here is my .htaccess file right now.
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ $1.php [NC,L,QSA]
This works in that it makes my pages accessible if the .php extension is not used.
Old = domain.com/test.php New = domain.com/test
The bad news is that when I send data to the following link, the data is not transmitted. I thought the QSA option did this, but what is the deal?
domain.com/test?id=1
source share