redirect landing without changing url

Posted by Gerard on Server Fault See other posts from Server Fault or by Gerard
Published on 2014-06-07T12:52:26Z Indexed on 2014/06/07 15:26 UTC
Read the original article Hit count: 337

I'm working with Apache and Joomla. I would like to have some URIs that land to the same landing page, but avoiding the URL changes.

So, for example:

examplecom/luggage/delay/iberia examplecom/luggage/delay/aireuropa examplecom/luggage/delay/ryanair

Need to point to examplecom/luggage/delay but the address bar must show the different airline companies.

I've been messing arround with mod_rewrite with the following codes:

1:

RewriteCond %{REQUEST_URI}  /equipaje/problemas-de-equipaje/perdida-equipaje-iberia [NC,OR]
RewriteCond %{REQUEST_URI}  /equipaje/problemas-de-equipaje/perdida-equipaje-vueling [NC,OR]
RewriteCond %{REQUEST_URI}  /equipaje/problemas-de-equipaje/perdida-equipaje-ryanair [NC,OR]
RewriteCond %{REQUEST_URI}  /equipaje/problemas-de-equipaje/perdida-equipaje-aireuropa [NC,OR]
RewriteRule ^(.*)$  /equipaje/problemas-de-equipaje/perdida-equipaje [P]

2:

RewriteRule ^equipaje/problemas-de-equipaje/perdida-equipaje-iberia equipaje/problemas-de-equipaje/perdida-equipaje [NC,L]
RewriteRule ^equipaje/problemas-de-equipaje/perdida-equipaje-vueling equipaje/problemas-de-equipaje/perdida-equipaje [NC,L]
RewriteRule ^equipaje/problemas-de-equipaje/perdida-equipaje-ryanair equipaje/problemas-de-equipaje/perdida-equipaje [NC,L]
RewriteRule ^equipaje/problemas-de-equipaje/perdida-equipaje-aireuropa equipaje/problemas-de-equipaje/perdida-equipaje [NC,L]

The idea is to have different urls for AdWords but then I'll avoid the indexing of that company landpages to avoid replicated content.

I've been searching for several examples and trying to understand how the module works, but until now I haven't acomplished with that...

Is it possible to do that with mod_rewrite?

Many thanks!

© Server Fault or respective owner

Related posts about apache-2.2

Related posts about mod-rewrite