Good day there is a link gallery.php? Gallery = test I want to change to gallery / test but it does not work, but for example, gallery = test changes
RewriteRule ^gallery=(.*)$ gallery.php?gallery=$1 [L]
Do so
RewriteRule ^gallery/(.*)$ gallery.php?gallery=$1 [L]
the page fails to open without any css and js files and the links on the page are not correct. The slash is not screened either. But I don’t know if I’m doing it right
RewriteRule ^gallery\/(.*)$ gallery.php?gallery=$1 [L]