Giter VIP home page Giter VIP logo

Comments (4)

skipperbent avatar skipperbent commented on May 18, 2024 3

Hi @systemEDOM

Using the library on a sub-path like that is not officially supported yet, however it would be be possible to get it working quite easily.

Remember to change /local-path to your own local path (/project or /test).

Version 4.1.0.0 or above

Add event that appends your sub-path when a new route is added.

Example:

// ... your routes.php file

if($isRunningLocally) {

    $eventHandler = new EventHandler();
    $eventHandler->register(EventHandler::EVENT_ADD_ROUTE, function (EventArgument $arg) use (&$status) {

        if ($arg->route instanceof \Pecee\SimpleRouter\Route\LoadableRoute) {
            $arg->route->prependUrl('/local-path');
        }

    });

    TestRouter::addEventHandler($eventHandler);

}

Other versions

Wrap your routes in a group with a prefix that matches your sub-path, then changing the prefix depending on your environment.

If you don't want the group to fill your routes.php you could easily extending the SimpleRouter class and add the group in here by extending the start method.

Example:

class Router extends \Pecee\SimpleRouter\SimpleRouter 
{
    public static function start()
    {
        $prefix = ($isRunningLocally) ? '/local-path' : null;
        
        static::group(['prefix' => $prefix], function() {
                
            // require routes.php
            require_once 'routes.php';
            
        });
        
        parent::start();
    }
}

/ Simon

from simple-php-router.

skipperbent avatar skipperbent commented on May 18, 2024 1

If you run a sub-path both on live and localhost you should just wrap your routes in a group and change the prefix depending on your environment.

from simple-php-router.

systemEDOM avatar systemEDOM commented on May 18, 2024

Thank you very much i did could fix it. It's cool the routes system

from simple-php-router.

skipperbent avatar skipperbent commented on May 18, 2024

@systemEDOM

Cool - I'm glad to hear that you fixed your issue and thanks for using the library 👍

from simple-php-router.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.