XeScience Posted October 23, 2010 Share Posted October 23, 2010 Hey guys! I just joined this forum today, and I'm wondering about something... I see a lot of sites, and in the code of the site, style sheets and javascript includes are references in a manner similar to this... "href='http://www.somesite.com/css/css.php/someDirectory/style.css'" How is this done? The path following the "css.php" is what confuses me. Thanks for any information you have! Link to comment https://forums.phpfreaks.com/topic/216648-path-after-a-php-extension/ Share on other sites More sharing options...
.josh Posted October 23, 2010 Share Posted October 23, 2010 In general you can have a dot in a directory name so at face value that css.php is just a regular folder name. But more than likely that link is being rewritten to with mod_rewrite to point to css.php and pass someDirectory and style.css as params, something like ../css.php?dir=someDirectory&file=style.css and is done for SEO/search bot/content optimization purposes. Link to comment https://forums.phpfreaks.com/topic/216648-path-after-a-php-extension/#findComment-1125613 Share on other sites More sharing options...
XeScience Posted October 23, 2010 Author Share Posted October 23, 2010 Ahhh, that makes sence, thanks for showing me the mod_rewrite module, this is really cool!! Link to comment https://forums.phpfreaks.com/topic/216648-path-after-a-php-extension/#findComment-1125622 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.