We are currently running the developed php script in IIS.And in that they use the url redirection in .htaccess file.When we want to run the code we get pagenot found errors.where can i change the settings for the redirection of urls?
Here is my code for .htaccess file
When i run the http://localhost/project/MobileSearch/myplaylist
i got page not found error.But we have playlist.php page.Can you please help where i can change the settings?
Thanks in Advance
Here is my code for .htaccess file
Code:
RewriteEngine on RewriteRule ^myplaylist playlist.php RewriteRule ^lyrics/(.*)/(.*)?$ /lyrics.php?id=$1&name=$2 RewriteRule ^video/(.*)/(.*)?$ video.php?id=$1&name=$2 RewriteRule ^song/(.*).mp3?$ esong.php?id=$1 [L] RewriteRule ^search/(.*)/(.*)/(.*)?$ index.php?search=$1&page=$2&type=$3 [L] <FilesMatch "get.php$|download.php$|embed.php$|playlist.php$|info.php$|lyrics.php$|listen.php$"> SecFilterEngine off </FilesMatch>
i got page not found error.But we have playlist.php page.Can you please help where i can change the settings?
Thanks in Advance
Comment