Hello Community,
I’m again trying to do some stuff with .htaccess and for some reason am not able to.
I want to remove a parameter from my URL. Let me give you an example, let’s say I have something in the lines of MyDomain.com/index.php?band=brend
, I want to make it look like this MyDomain.com/brend
.
I’ve tried a couple of options and so far managed to remove the extention from the link but to that extend.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @brendRos,
Nice seeing you again!
So, I think a redirect like the following should work:
RewriteEngine ON
RewriteCond %{THE_REQUEST} \s/index\.php\?band=(\S+)\s [NC]
RewriteRule ^ /%1? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)/?$ index.php?band=$1 [QSA,L]
Also, just a quick note, you’ll need to pass your argument to index.php in the backend to make use of them but I’m sure you already know that.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.