This is my code for pages.php but it gives me 500 Internal Server Error in wamp server for my all cms files. On the other hand, if i remove this .htaccess file, cms works fine. But i want a beautiful url for get variables. HELP PLSEASE
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^page_id/(\w+)$./pages.php?id=$1
Get variable in php
$page_id = $_GET["id"];