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

  • SEARCH
  • Home
  • 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 8809683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:56:15+00:00 2026-06-14T02:56:15+00:00

This is probable a very simple one. I have a function for the index

  • 0

This is probable a very simple one.

I have a function for the index that either lists everything or a specific item based on an optional parameter passed to it.

I have this route for the controller:

Route::controller('movies/(:any)');

I want to redirect it to the movies index function with the parameter in place.
I dont want people to have to type:
http://www.site.com/movies/index/2
but instead
http://www.site.com/movies/2

I have tried a Question mark in the any array and a ‘closure’ function (I think thats the right terminology) to allow me to redirect.

The closure attempt looked like this:

Route::controller('movies/(:any?)',function($id){
    return Redirect::to("movie/index/$id");
});

This gives me a 404 error.
Am I doing it right?

  • 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-14T02:56:17+00:00Added an answer on June 14, 2026 at 2:56 am

    You dont want to distiquish that on your Route, let the controller decide what to do.

    Your Route:

    Route::get('movies/(:any)', 'movies@index');
    

    Your Controller:

    class Movies_Controller extends Base_Controller {
    
        public $restful = true; // i have this line on my Base_Controller
    
        function get_index($id = null)
        {
            if( ! is_null($id))
            {
                // return the movie
            }
    
            // return all movies
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So this one is probably very simple, but I'm having a bit of trouble
You'll have to forgive me on this one. I understand that the issue is
This is probably a very simple and stupid question to ask, but I have
I have created a very simple model called Discussion and one of the columns
I have a client requesting a very simple program that stores basic information that
This is probably something very simple, so forgive my blonde moment :) I have
This is probably very simple but it's really confusing me. When I implement the
This is probably a very simple question, I apologise - I'm new to rails.
This is probably a very simple question so please forgive my ignorance, but can
This is probably a very simple question but I'm a little confused how this

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.