0
Good night,
I’m needing to move these parts from a web.config to . htaccess, but I’m having a lot of questions.
<rule name="Regla 1-1">
<match url="^camera/pictures/(.*)_small\.png$" ignoreCase="false" />
<action type="Rewrite" url="camera/pictures/{R:1}.png" />
</rule>
<rule name="Regla 2-2">
<match url="^camera/thumbnails/(.*)\.png$" ignoreCase="false" />
<action type="Rewrite" url="camera/thumbnails/{R:1}.png" />
</rule>
Can someone help me?
Thank you!
What makes the second rule? Rewrite to the same URL???
– Mariano
As I understand it, it is. The most important is the first... When I rewrite, it doesn’t work.
– Elson Freitas