Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

reverse proxy/URL Rewrite in IIS not supported by firefox?

  • 1 відповідь
  • 1 має цю проблему
  • 3 перегляди
  • Остання відповідь від SHAIN

more options

I have a Angular 6 app hosted behind a reverse proxy in IIS.

I'm unable to launch the app in iframe using firefox but can do so using chrome. 

I've been using the URL Rewrite Module.

I have a Angular 6 app hosted behind a reverse proxy in IIS. I'm unable to launch the app in iframe using firefox but can do so using chrome. I've been using the URL Rewrite Module.

Усі відповіді (1)

more options

I can't talk about Chrome but Firefox has, and has had for quite some time, a bug where it fails to recognise new content on some pages and uses it's cache instead. Just restarting the browser achieves nothing. You have to clear the browser cache completely. In some web apps I have to append a random or timestamped string to the URL in order to get FF to always reload some pages. The relevant meta tags in the header are very often also ignored by FF.

<rewrite>

 <rules>
   <rule name="Redirect to HTTPS" stopProcessing="true">
     <match url="(.*)" />
     <conditions>
       <add input="{HTTPS}" pattern="^OFF$" />
     </conditions>
     <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
   </rule>
 </rules>

</rewrite>