I want to get my data from url witch are slash separated like this:
www.example.com/page.php/12
witch must interpreted to:
www.example.com/page.php?id=12
I wont to specify page name like "page.php" in my .htaccess and it must be generic like "*.php". i use this lines but this change my baseUrl and my css are not accessible:
RewriteEngine On
RewriteRule ^([^/]+)/([^/]+)$ $1.php?id=$2