I want to access movies.php?m=Bengali Audio but in this format movies/Bengali Audio i write these .htaccess code but its showing File not found, where movies.php?m=Bengali Audiois working fine
RewriteEngine On # Rewrite for movies.php?m=Bengali Audio RewriteRule ^movies/([0-9a-zA-Z_-]+'')$ movies.php?m=$1 [NC,L]
''in your pattern expression? Should be^movies/([0-9a-z_-]+)$ movies.php?m=$1 [NC,L](also stripped outA-Zas you have theNC(no-case) flag set.