2

I am configuring an apache server to change URLs from [http://(IP)/users/testuser/test.html] to [http:/(IP)/~testuser/test.html]

This works fine, as such

RewriteEngine On  
RewriteRule ^/users/(.*)$ /~\$1 [R]

However when someone does [https://(IP)/users/testuser/test.html] it does not change it to [https:/(IP)/~testuser/test.html]

Any suggestions?

roger34
  • 55
  • 2
  • 7
  • 1
    Okay, figured it out - you have to add the rule to a virtual host directive in the ssl.conf file instead of where I was trying to put it. – roger34 May 18 '12 at 00:54
  • 1
    Please add this as a proper answer, and then accept it to close the question. –  May 18 '12 at 05:58

1 Answers1

1

You have to add the rule to a virtual host directive in the ssl.conf file instead of where you were trying to put it.

slhck
  • 223,558
  • 70
  • 607
  • 592