I have a line in the .htaccess file:
RewriteRule ^(.*)$ index.php?page=$1 [NC,L]
and a line in index.php:
$page = $_GET['page']; echo $page;
If I go to http://www.example.com/test-page, it returns index.php.
The only way to fix it that I've found is to do:
RewriteRule ^(.*)/$ index.php?page=$1 [NC,L]
If I go to http://www.example.com/test-page/ it works and outputs test-page.
However, I don't want the webpage to use http://www.example.com/test-page/, I want it to use http://www.example.com/test-page.
How can I fix this, preferably without adding a rule that adds a / to the end of the url in an internal rewrite...?