- I am just new to
.htaccess
. - I need some rewrite rules for
URLs
. - I Google'd some and applied but no change in URL.
I want:
demo.example.com/section.php?id=1
Changed to:
demo.example.com/section/sample-section
i tried
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^section/(d+)*$ ./section.php?id=$1
but no difference
Thanks.
I will appreciate your help.
Question&Answers:os