Use of IIS as a reverse proxy with dynamic forwarding

Good afternoon,

I need a reverse proxy solution to forward API calls from a server to different clients. I wanted to use an IIS with ARR for this. The address of the target client is included in the HTTP call of the server:

http://Proxyserver/Targetcomputer/API_String

I would like to rewrite the URL to: http://Targetcomputer/API_String

I have set up a URL rewrite rule with the following pattern:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>`^(.*)/(.*)`
</code>
<code>`^(.*)/(.*)` </code>
`^(.*)/(.*)`

This leads to the following result:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>`{R:0} Targetcomputer/API_String`
`{R:1} Targetcomputer`
`{R:2} API_String`
</code>
<code>`{R:0} Targetcomputer/API_String` `{R:1} Targetcomputer` `{R:2} API_String` </code>
`{R:0} Targetcomputer/API_String`
`{R:1} Targetcomputer`
`{R:2} API_String`

I use the following expression for the paraphrase:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>`http://{R:1}/{R:2}`
</code>
<code>`http://{R:1}/{R:2}` </code>
`http://{R:1}/{R:2}`

However, it seems to me that dynamic redirection to {R:1} is not possible.
Any suggestions from the smart guys?

Thank you in advance!

Andreas

Various forwarding rules created without success
The web server only seems to be able to access local resources.

Here are the Rewrite Rule out of web.config:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><rule name="Test" enabled="true" stopProcessing="true">
<match url="^([^/]+)/([^/]+)" />
<action type="Rewrite" url="http://{R:1}/{R:2}" LogRewrittenUrl="true" />
</rule>
</code>
<code><rule name="Test" enabled="true" stopProcessing="true"> <match url="^([^/]+)/([^/]+)" /> <action type="Rewrite" url="http://{R:1}/{R:2}" LogRewrittenUrl="true" /> </rule> </code>
<rule name="Test" enabled="true" stopProcessing="true">
      <match url="^([^/]+)/([^/]+)" />
      <action type="Rewrite" url="http://{R:1}/{R:2}" LogRewrittenUrl="true" />
</rule>

Some more information, here are the details out of Failed Request Log:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><failedRequest url="http://localhost:80/www.ibm.com"
siteId="1"
appPoolId="DefaultAppPool"
processId="9580"
verb="GET"
remoteUserName=""
userName=""
tokenUserName="NT-AUTORITÄTIUSR"
authenticationType="anonymous"
activityId="{4000011E-0000-F000-B63F-84710C7967BB}"
failureReason="STATUS_CODE"
statusCode="404"
triggerStatusCode="404"
timeTaken="47"
xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb"
>
</code>
<code><failedRequest url="http://localhost:80/www.ibm.com" siteId="1" appPoolId="DefaultAppPool" processId="9580" verb="GET" remoteUserName="" userName="" tokenUserName="NT-AUTORITÄTIUSR" authenticationType="anonymous" activityId="{4000011E-0000-F000-B63F-84710C7967BB}" failureReason="STATUS_CODE" statusCode="404" triggerStatusCode="404" timeTaken="47" xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb" > </code>
<failedRequest url="http://localhost:80/www.ibm.com"
               siteId="1"
               appPoolId="DefaultAppPool"
               processId="9580"
               verb="GET"
               remoteUserName=""
               userName=""
               tokenUserName="NT-AUTORITÄTIUSR"
               authenticationType="anonymous"
               activityId="{4000011E-0000-F000-B63F-84710C7967BB}"
               failureReason="STATUS_CODE"
               statusCode="404"
               triggerStatusCode="404"
               timeTaken="47"
               xmlns:freb="http://schemas.microsoft.com/win/2006/06/iis/freb"
               >

The URL_REWRITE Section:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><Opcode>URL_REWRITE_START</Opcode>
<Keywords>
<Keyword>Rewrite</Keyword>
</Keywords>
<freb:Description Data="Scope">Global</freb:Description>
<freb:Description Data="Type">Inbound</freb:Description>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>3</Opcode>
<Keywords>0x400</Keywords>
<TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
<Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
<Execution ProcessID="9580" ThreadID="1488"/>
<Computer>1BLUE</Computer>
</System>
<EventData>
<Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
<Data Name="RuleName">Forwarding</Data>
<Data Name="RequestURL">www.ibm.com</Data>
<Data Name="QueryString"></Data>
<Data Name="PatternSyntax">0</Data>
<Data Name="StopProcessing">true</Data>
<Data Name="RelativePath">/</Data>
</EventData>
<RenderingInfo Culture="de-DE">
<Opcode>RULE_EVALUATION_START</Opcode>
<Keywords>
<Keyword>Rewrite</Keyword>
</Keywords>
<freb:Description Data="PatternSyntax">Regex</freb:Description>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>10</Opcode>
<Keywords>0x400</Keywords>
<TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
<Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
<Execution ProcessID="9580" ThreadID="1488"/>
<Computer>1BLUE</Computer>
</System>
<EventData>
<Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
<Data Name="Pattern">^(.*)/(.*)</Data>
<Data Name="Input">www.ibm.com</Data>
<Data Name="Negate">false</Data>
<Data Name="Matched">false</Data>
</EventData>
<RenderingInfo Culture="de-DE">
<Opcode>PATTERN_MATCH</Opcode>
<Keywords>
<Keyword>Rewrite</Keyword>
</Keywords>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>5</Level>
<Opcode>4</Opcode>
<Keywords>0x400</Keywords>
<TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
<Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
<Execution ProcessID="9580" ThreadID="1488"/>
<Computer>1BLUE</Computer>
</System>
<EventData>
<Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
<Data Name="RuleName">Forwarding</Data>
<Data Name="RequestURL">www.ibm.com</Data>
<Data Name="QueryString"></Data>
<Data Name="StopProcessing">true</Data>
<Data Name="Succeeded">false</Data>
</EventData>
<RenderingInfo Culture="de-DE">
<Opcode>RULE_EVALUATION_END</Opcode>
<Keywords>
<Keyword>Rewrite</Keyword>
</Keywords>
</RenderingInfo>
<ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
<EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
</ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
<EventID>0</EventID>
<Version>1</Version>
<Level>4</Level>
<Opcode>2</Opcode>
<Keywords>0x400</Keywords>
<TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
<Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
<Execution ProcessID="9580" ThreadID="1488"/>
<Computer>1BLUE</Computer>
</System>
<EventData>
<Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
<Data Name="RequestURL"></Data>
</EventData>
<RenderingInfo Culture="de-DE">
<Opcode>URL_REWRITE_END</Opcode>
</code>
<code><Opcode>URL_REWRITE_START</Opcode> <Keywords> <Keyword>Rewrite</Keyword> </Keywords> <freb:Description Data="Scope">Global</freb:Description> <freb:Description Data="Type">Inbound</freb:Description> </RenderingInfo> <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace"> <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid> </ExtendedTracingInfo> </Event> <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/> <EventID>0</EventID> <Version>1</Version> <Level>5</Level> <Opcode>3</Opcode> <Keywords>0x400</Keywords> <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/> <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/> <Execution ProcessID="9580" ThreadID="1488"/> <Computer>1BLUE</Computer> </System> <EventData> <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data> <Data Name="RuleName">Forwarding</Data> <Data Name="RequestURL">www.ibm.com</Data> <Data Name="QueryString"></Data> <Data Name="PatternSyntax">0</Data> <Data Name="StopProcessing">true</Data> <Data Name="RelativePath">/</Data> </EventData> <RenderingInfo Culture="de-DE"> <Opcode>RULE_EVALUATION_START</Opcode> <Keywords> <Keyword>Rewrite</Keyword> </Keywords> <freb:Description Data="PatternSyntax">Regex</freb:Description> </RenderingInfo> <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace"> <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid> </ExtendedTracingInfo> </Event> <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/> <EventID>0</EventID> <Version>1</Version> <Level>5</Level> <Opcode>10</Opcode> <Keywords>0x400</Keywords> <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/> <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/> <Execution ProcessID="9580" ThreadID="1488"/> <Computer>1BLUE</Computer> </System> <EventData> <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data> <Data Name="Pattern">^(.*)/(.*)</Data> <Data Name="Input">www.ibm.com</Data> <Data Name="Negate">false</Data> <Data Name="Matched">false</Data> </EventData> <RenderingInfo Culture="de-DE"> <Opcode>PATTERN_MATCH</Opcode> <Keywords> <Keyword>Rewrite</Keyword> </Keywords> </RenderingInfo> <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace"> <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid> </ExtendedTracingInfo> </Event> <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/> <EventID>0</EventID> <Version>1</Version> <Level>5</Level> <Opcode>4</Opcode> <Keywords>0x400</Keywords> <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/> <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/> <Execution ProcessID="9580" ThreadID="1488"/> <Computer>1BLUE</Computer> </System> <EventData> <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data> <Data Name="RuleName">Forwarding</Data> <Data Name="RequestURL">www.ibm.com</Data> <Data Name="QueryString"></Data> <Data Name="StopProcessing">true</Data> <Data Name="Succeeded">false</Data> </EventData> <RenderingInfo Culture="de-DE"> <Opcode>RULE_EVALUATION_END</Opcode> <Keywords> <Keyword>Rewrite</Keyword> </Keywords> </RenderingInfo> <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace"> <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid> </ExtendedTracingInfo> </Event> <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/> <EventID>0</EventID> <Version>1</Version> <Level>4</Level> <Opcode>2</Opcode> <Keywords>0x400</Keywords> <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/> <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/> <Execution ProcessID="9580" ThreadID="1488"/> <Computer>1BLUE</Computer> </System> <EventData> <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data> <Data Name="RequestURL"></Data> </EventData> <RenderingInfo Culture="de-DE"> <Opcode>URL_REWRITE_END</Opcode> </code>
<Opcode>URL_REWRITE_START</Opcode>
  <Keywords>
   <Keyword>Rewrite</Keyword>
  </Keywords>
  <freb:Description Data="Scope">Global</freb:Description>
  <freb:Description Data="Type">Inbound</freb:Description>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
  <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>5</Level>
  <Opcode>3</Opcode>
  <Keywords>0x400</Keywords>
  <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
  <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
  <Execution ProcessID="9580" ThreadID="1488"/>
  <Computer>1BLUE</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
  <Data Name="RuleName">Forwarding</Data>
  <Data Name="RequestURL">www.ibm.com</Data>
  <Data Name="QueryString"></Data>
  <Data Name="PatternSyntax">0</Data>
  <Data Name="StopProcessing">true</Data>
  <Data Name="RelativePath">/</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">
  <Opcode>RULE_EVALUATION_START</Opcode>
  <Keywords>
   <Keyword>Rewrite</Keyword>
  </Keywords>
  <freb:Description Data="PatternSyntax">Regex</freb:Description>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
  <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>5</Level>
  <Opcode>10</Opcode>
  <Keywords>0x400</Keywords>
  <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
  <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
  <Execution ProcessID="9580" ThreadID="1488"/>
  <Computer>1BLUE</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
  <Data Name="Pattern">^(.*)/(.*)</Data>
  <Data Name="Input">www.ibm.com</Data>
  <Data Name="Negate">false</Data>
  <Data Name="Matched">false</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">
  <Opcode>PATTERN_MATCH</Opcode>
  <Keywords>
   <Keyword>Rewrite</Keyword>
  </Keywords>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
  <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>5</Level>
  <Opcode>4</Opcode>
  <Keywords>0x400</Keywords>
  <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
  <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
  <Execution ProcessID="9580" ThreadID="1488"/>
  <Computer>1BLUE</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
  <Data Name="RuleName">Forwarding</Data>
  <Data Name="RequestURL">www.ibm.com</Data>
  <Data Name="QueryString"></Data>
  <Data Name="StopProcessing">true</Data>
  <Data Name="Succeeded">false</Data>
 </EventData>
 <RenderingInfo Culture="de-DE">
  <Opcode>RULE_EVALUATION_END</Opcode>
  <Keywords>
   <Keyword>Rewrite</Keyword>
  </Keywords>
 </RenderingInfo>
 <ExtendedTracingInfo xmlns="http://schemas.microsoft.com/win/2004/08/events/trace">
  <EventGuid>{0469ABFA-1BB2-466A-B645-E3E15A02F38B}</EventGuid>
 </ExtendedTracingInfo>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
 <System>
  <Provider Name="WWW Server" Guid="{3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}"/>
  <EventID>0</EventID>
  <Version>1</Version>
  <Level>4</Level>
  <Opcode>2</Opcode>
  <Keywords>0x400</Keywords>
  <TimeCreated SystemTime="2024-09-12T07:37:35.518Z"/>
  <Correlation ActivityID="{4000011E-0000-F000-B63F-84710C7967BB}"/>
  <Execution ProcessID="9580" ThreadID="1488"/>
  <Computer>1BLUE</Computer>
 </System>
 <EventData>
  <Data Name="ContextId">{4000011E-0000-F000-B63F-84710C7967BB}</Data>
  <Data Name="RequestURL"></Data>
 </EventData>
 <RenderingInfo Culture="de-DE">
  <Opcode>URL_REWRITE_END</Opcode>

3

I want to cut out the address of the proxy server

Then your action should be Redirect instead of Rewrite. you can refer to this blog to know about the difference of rewrite and redirect.

Try to use Rule below

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code><rule name="Test" enabled="true" stopProcessing="true">
<match url="^([^/]+)/([^/]+)" />
<conditions>
<add input="{HTTP_HOST}" pattern="^proxyserver$">
</conditions>
<action type="Redirect" url="http://{R:1}/{R:2}" />
</rule>
</code>
<code><rule name="Test" enabled="true" stopProcessing="true"> <match url="^([^/]+)/([^/]+)" /> <conditions> <add input="{HTTP_HOST}" pattern="^proxyserver$"> </conditions> <action type="Redirect" url="http://{R:1}/{R:2}" /> </rule> </code>
<rule name="Test" enabled="true" stopProcessing="true">
  <match url="^([^/]+)/([^/]+)" />
    <conditions>
      <add input="{HTTP_HOST}" pattern="^proxyserver$">
    </conditions>
  <action type="Redirect" url="http://{R:1}/{R:2}" />
</rule>

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật