I want to make the URL look like
../shop/id_rubr/2/kategor/man/ without cgi-bin (!)
OR
../shop/2-man.html
RewriteRule ???
Check out these threads. They should have enough to get you started:
[webmasterworld.com...]
[webmasterworld.com...]
[webmasterworld.com...]
for a larger list do a site search (upper left corner [searchengineworld.com...] ) for mod_rewrite
RewriteRule ^forum([0-9]+)/index\.htm$ forum.cgi?forum=$1 [T=application/x-httpd-cgi]
First part is the request url. Then the real url, followed by the mime type. In our case, /forumX/index.htm becomes forum.cgi?forum=X
Or something similar to what you want to do:
RewriteRule ^forum([0-9]+)/([0-9\-]+)\.htm$ discussion.cgi?forum=$1&discussion=$2 [T=application/x-httpd-cgi]
Which works out to:
/forumX/ZZZ.htm becomes internally /discussion.cgi?forum=X&discussion=ZZZ
This is the case.
The websites i have lies on a IIS 5.0 server.
The url presented is
[domain.com...]
(for instance)
If i want this url to be presented as
a .asp or .html file without the ? (or any other charachters that the spiders don't like) in it.
how do i do that?
Is it possible?
Remember it's my first time so you have to explain everything really good ;)