Hi together,
I'd like the following for a CMS:
URL http://localhost/module/News/article/56/show/1.html
will be rewrited to
http://localhost/index.php?module=News&article=56&show=1

From the PHP site, it's easy to explode the querystring and prepare the right link.

When I click the first time on:
http://localhost/module/News/article/56/show/1.html
everything is ok, but then the link becomes the following:

http://localohost/module/News/article/56/show/1/module/News/article/56/show/1.html

So Apache thinks that "module/News/article/56/show/" is the current folder and he is looking in this subfolder.
After that I get either a 404 or embedded pictures are not found.

My rewrite rules are the following:
RewriteRule ^(.*)/(.*)(\.html?)$ /index.php?$1=$2 [L]
RewriteRule ^(.*)/(.*)/(.*)(\.html?)$ /index.php?$1=$2&$3 [L]
RewriteRule ^(.*)/(.*)/(.*)/(.*)(\.html?)$ /index.php?$1=$2&$3=$4 [L]
RewriteRule ^(.*)/(.*)/(.*)/(.*)/(.*)(\.html?)$ /index.php?$1=$2&$3=$4&$5 [L]
etc.

I tried the following too:
RewriteBase /

But nothing has changed.

Thank you for tips, Bernd

--
Bernd Münt                   Durchwahl: 030/69032-509
euroscript Deutschland GmbH  Zentrale:  030/69032-300
Abteilung IT-Management      Fax:       030/69032-505
Alt-Moabit 91                Mail:      [EMAIL PROTECTED]
10559 Berlin                 Web:       http://www.euroscript.de

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to