.htaccess and Include
Posted: Tue Jul 29, 2008 7:42 pm
I am currently using .htaccess as below to make "fake" htm files with php.
However I have encounted a problem when I am trying to include php files to my script.
Say template.php is stored at mysite.com/template.php and it is being included with
if I hit mysite.com/index.php?page=home&pages=1 it works fine.
However if I hit mysite.com/pages/home so I am relying on htaccess it returns a include fail, file not found.
How on earth do I get around this?
Code: Select all
RewriteEngine On
RewriteRule ^pages/(.*).htm /index.php?page=$1&pages=1Say template.php is stored at mysite.com/template.php and it is being included with
Code: Select all
include('template.php');However if I hit mysite.com/pages/home so I am relying on htaccess it returns a include fail, file not found.
How on earth do I get around this?