Reputation: 45
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 Audio
is working fine
RewriteEngine On
# Rewrite for movies.php?m=Bengali Audio
RewriteRule ^movies/([0-9a-zA-Z_-]+'')$ movies.php?m=$1 [NC,L]
Upvotes: 0
Views: 25
Reputation: 784958
You can use this regex pattern to match spaces in movie name:
Options -MultiViews
RewriteEngine On
# Rewrite for movies.php?m=Bengali Audio
RewriteRule ^movies/([^/]+)/?$ movies.php?m=$1 [NC,L,QSA]
Upvotes: 1