TempleDMDKrazd Posted July 29, 2008 Share Posted July 29, 2008 so im browsing a few websites and i see either http://someurl.com/somepage/blah/ and i know its a php page being "somepage.php" and "blah" being the variable to get $_GET or http://www.someurl.com/somepage?blah how do people do this or is there a tutorial online? thanks Link to comment https://forums.phpfreaks.com/topic/117212-no-php-file-entension-in-the-urlhow/ Share on other sites More sharing options...
wildteen88 Posted July 29, 2008 Share Posted July 29, 2008 This is achieved by using mod_rewrite. Link to comment https://forums.phpfreaks.com/topic/117212-no-php-file-entension-in-the-urlhow/#findComment-602934 Share on other sites More sharing options...
lemmin Posted July 29, 2008 Share Posted July 29, 2008 If you just type the directory, the web server will look for a default file name like index.php. In that case you can use the url as though index.php were in it: http://someurl.com/somepage/blah/?blah=1 The second one you mentioned would be a little bit different and probably is done using htaccess rewrite rules: http://corz.org/serv/tricks/htaccess2.php Link to comment https://forums.phpfreaks.com/topic/117212-no-php-file-entension-in-the-urlhow/#findComment-602937 Share on other sites More sharing options...
Jabop Posted July 29, 2008 Share Posted July 29, 2008 mod rewrite Link to comment https://forums.phpfreaks.com/topic/117212-no-php-file-entension-in-the-urlhow/#findComment-602950 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.