Jump to content

mod_rewrite question....


techiefreak05

Recommended Posts

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 is

Instead of having http://www.domain.com/user.html
I'd like to have...
http://www.domain.com/user

or just generally take off the extension.

Is that possible??

Link to comment
https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/
Share on other sites

  • 1 month later...
@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 engine
RewriteEngine 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.
Link to comment
https://forums.phpfreaks.com/topic/16286-mod_rewrite-question/#findComment-95968
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.