redirect - Rewrite URL's in Joomla menus -


my group , working on school project joomla. have custom php list "articles" our database, , php getting data $_get (from url.) skip question:

this have:

example.com/articles/menu 

we want:

example.com/articles/menu?q=something+something 

how rewrite / add text url, format?
using school server, have no admin-rights on server.
have tried mod_rewrite rules in .htaccess, without success.
server running windows.
using joomla 2.5

rewriteengine on  rewriterule ^index.php/articles/menu?q=something+something$ /index.php/articles/menu [l] 

try this:

rewriteengine on rewriterule ^/articles/menu$ index.php/articles/menu?q=something+something [qsa,l] 

and job.

hey way, try google bit, there tons of answers such simple things ;)

checkout right documentation qsa directive: http://httpd.apache.org/docs/current/rewrite/flags.html#flag_qsa


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -