Welcome Guest, Not a member yet? Register   Sign In
combat the asset_helper and base_url
#2

[eluser]theprodigy[/eluser]
that's not a bad solution, but I usually just use the .htaccess file you presented with that link, and just prefix all my asset calls with a forward slash:
Code:
<img src='/images/your_image.jpg' alt='Your Alt' />
[removed][removed]
&lt;link rel='stylesheet' href='/css/your_style_sheet.css' type='text/css' /&gt;

That htaccess file tells the server to look for the file first. If it doesn't exist, then send the request to index.php.

The path in the img src tells the server to start looking in the webroot. As long as the path is correct, it will show the image, render the js file, render the css file, etc, etc.

If you want to keep all your assets contained in an "assets" directory, then just modify the src attribute:
Code:
<img src='/assets/images/your_image.jpg' alt='Your Alt' />
[removed][removed]
&lt;link rel='stylesheet' href='/assets/css/your_style_sheet.css' type='text/css' /&gt;

I think this is much easier than having to modify an htaccess file each time I want to add a new asset type (like a flash file, as per your example).


Messages In This Thread
combat the asset_helper and base_url - by El Forum - 05-07-2010, 05:18 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:21 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:32 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:49 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:51 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:53 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 06:57 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 07:09 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 07:16 PM
combat the asset_helper and base_url - by El Forum - 05-07-2010, 07:25 PM
combat the asset_helper and base_url - by El Forum - 05-08-2010, 04:54 AM
combat the asset_helper and base_url - by El Forum - 05-08-2010, 02:28 PM
combat the asset_helper and base_url - by El Forum - 05-18-2010, 09:14 AM
combat the asset_helper and base_url - by El Forum - 05-18-2010, 11:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB