this my htaccess code :
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{THE_REQUEST} ^(GET|HEAD|POST)\ /Songs/Songs\.php\?movie=([^&\ ]+)([^\ ]*)
RewriteRule ^/Songs/%3?%4 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?Songs/(.*)$ /Songs/Songs.php?movie=$1 [L,QSA]
</IfModule>
It is redirecting perfectly like
From
localhost/Songs/Songs.php?movie=anymovie-2012
To
localhost/Songs/anymovie-2012
But when I tried
localhost/Songs/<anytext>
For eg.
localhost/Songs/test
then it also called songs.php instead of throwing page not found error.
how to throw Page not Found Error if last keyword is not present in database.
For solution,
should I need to code in songs.php file or in .htaccess file and what type of code I need to do?
