In my views, all the css, js, img are prefixed with the URI (i.e. : http://localhost/) when views are displayed in the navigator. In code source, I put something like this :
I don't want that. I want the resources to be searched from the directory where the php file is because fuelPHP directory are beside the www directory, not inside.
Don't use relative URL's, your browser prefixes it because of the missing leading /.
Nothing to do with Fuel.
You can't have it searched from the directory where the php file is, php files in Fuel are all outside the document root, for security purposes. Assets should be in /public, not anywhere else.