Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8497423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T00:07:19+00:00 2026-06-11T00:07:19+00:00

I want create API which has same URL say http://stackoverflow.com/profile but having different request

  • 0

I want create API which has same URL say http://stackoverflow.com/profile but having different request method like POST, PUT, GET, etc. I want to do different action based on method type. One way is write common action which for comparing methods and redirect using

$this->forward('anotherModule','anotherAction');

Is there any other way to check it’s method and redirect to different actions without using one general action?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T00:07:20+00:00Added an answer on June 11, 2026 at 12:07 am

    In your routing.yml you can define different controllers for the same pattern based on request method

    read:
        pattern: /yourUrl
        defaults: { _controller: your.controller:readAction }
        requirements:
            _method: GET
    
    write:
        pattern: /yourUrl
        defaults: { _controller: your.controller:writeAction }
        requirements:
            _method: POST
    

    Or if you use annotations:

    /**
     * @Route("/yourRoute", requirements={"_method" = "GET"})
     */
    public function showAction($id)
    {
        ...
    }
    
    /**
     * @Route("/yourRoute", requirements={"_method" = "POST"})
     */
    public function writeAction($id)
    {
        ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to create app which has requirement to integrate calculator. I want to
I'm trying to create an extension which has a popup. I want to be
i am new to android programming and i want to create an api with
I want to create a rest api using reasteasy and jax-rs in spring. to
I want to create an Enumeration using CodeDom API . I have searched enough
I want to create Task in Google Calendar using Google Calendar API.Using C#. Looking
I want to find out if it is possible to create Android API's that
I'm about to create an API for a existing .NET application and want to
I want to create Contact on Google Apps. I am Using this API And
As a learning exercise i want to create a simple web api and consume

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.