techiefreak05 Posted August 2, 2006 Share Posted August 2, 2006 As I'm looking around this forum, I'm noticing mod_rewrite being mentioned, and I was looking around the web, and found it to be very useful but there is one thing I couldnt figure out how to do, whoch isInstead of having http://www.domain.com/user.htmlI'd like to have...http://www.domain.com/useror just generally take off the extension.Is that possible?? Quote Link to comment https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/ Share on other sites More sharing options...
hostfreak Posted August 2, 2006 Share Posted August 2, 2006 This really helped me a lot: http://lotsofphp.com/tutorials/rewritten-urls-unlimited-parameters.html Quote Link to comment https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/#findComment-67568 Share on other sites More sharing options...
techiefreak05 Posted August 2, 2006 Author Share Posted August 2, 2006 I dont think thats what Im after.. i couldnt find anything about masking/removing an extension Quote Link to comment https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/#findComment-67575 Share on other sites More sharing options...
vivek Posted September 21, 2006 Share Posted September 21, 2006 HelloI want to know that how can it possible to make a dynamic subdomain using .htaccess file and mod_rewrite ?My idea is,I want to redirect http://subdomain.mydomain.com to http://mydomain.com/redirect.php?id=subdomainHow can this possible in apache's mod rewrite ? Quote Link to comment https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/#findComment-95882 Share on other sites More sharing options...
wildteen88 Posted September 21, 2006 Share Posted September 21, 2006 @techiefreak05 the site posted by hostfreak is acutally what you want to read. As is it doing basically what you want to do. The difference is its rewriting a query string. This is the mod rewrite code you'll want to use:[code]# Turn on the rewrite engineRewriteEngine On# the rewriter tule to use:RewriteRule ^user$ /user.html[/code]You add the above the the htaccess file thatg is in the same folder as user.html. When you goto mysite.com/user it'll load up user.html.@vivek - Please do not hijack other peoples threads. Please create your own thread. However I'll answer you question - I'm quite new to mod rewrite but I dont think it is possible to do that. Mod rewrite can only rewrite whats after you websites address. Prehaps you might want to look into virtual hosts if you want to create a subdomain. Quote Link to comment https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/#findComment-95968 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.