Jump to content

Please help for a simple redirection


etrader

Recommended Posts

I wish to redirect http://domain.com/index.php?something=something&something=something&something=KEYWORD

 

to

 

http://domain.com/KEYWORD

 

 

The original url is generated by Joomla CMS, but I do not want to use available SEF extentions; just want to make this simple redirection via .htaccess

 

Thanks :)

Link to comment
https://forums.phpfreaks.com/topic/165042-please-help-for-a-simple-redirection/
Share on other sites

  • 3 weeks later...

Try this:

RewriteRule ^([a-zA-Z0-9_-]+)/?$ index.php?something=something&something=something&something=$1 [L]

 

I normally use the following:

RewriteRule ^([a-zA-Z0-9_-]+)/?$ index.php?xxxxxxxx=$1 [L]

 

so it rewrites to domain.com/xxxxxxxx

 

I know you have some extra variables in the query string but it should, hopefully, work the same.

 

Just keep in mind that [a-zA-Z0-9_-] will only allow alphanumeric characters plus the underscore and hyphen. Modify this to accomodate for your allowed characters.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.