Hi!

I'm configuring the Apache Server. I have a server mounted with the next
url: http://VMS-GEN-000/ <http://vms-gen-000/>

And a Wiki into with  http://VMS-GEN-000/wiki/ <http://vms-gen-000/wiki/>url

I want that apache redirects to the wiki if the user types:
http://wiki.mydomain.com <http://wiki.miempresa.com/> and preserve this
prefix while browser across the wiki. for example, if types:
http://wiki.mydomain.com <http://wiki.miempresa.com/> and goes to the
Article 1, the URL will be http://wiki.mydomain.com<http://wiki.miempresa.com/>
/
Article_1

I've used this one:

Code:

RewriteEngine on
RewriteCond %{HTTP_HOST} wiki.miempresa.es
RewriteRule ^(.*)$ http://VMS-GEN-000/wiki <http://vms-gen-000/wiki>
[R=permanent,L]


Redirects fine, but when the user browse, the url
http://VMS-GEN-000/wiki<http://vms-gen-000/wiki>returns appear.

What can I do? Regards

Reply via email to