I cannot get this to work. I want
http://localhost/test/post.php?id=15
to show
http://localhost/test/post/15
My attempt loads a page without css on it and shows me my customr 404 error page
Options -Indexes -MultiViews +FollowSymlinks
RewriteEngine On
RewriteBase /test/
ErrorDocument 404 /errors/404.php
RewriteCond %{QUERY_STRING} ^id=(.+)$ [NC]
RewriteRule ^post\.php post/%1? [R,L]
please help me out!