I have this in my htaccess:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ index.php?name=$1&dircontent=album&album=$2 [L]
My problem is that if the album name is something with slashes (for example: blabal/fdfdg) it makes an error in my website and don’t show the page.
How I can fix it?