SUJOY ROY
SUJOY ROY

Reputation: 45

Rewriting url in htaccess

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]

Upvotes: 0

Views: 25

Answers (1)

anubhava
anubhava

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

Related Questions