You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Bernd Muent <Be...@euroscript.de> on 2006/04/11 10:46:37 UTC

[users@httpd] modRewrite looks in the wrong subfolder: http://localhost/module/News/article/56.html => http://localhost/index.php?module=News&article=56

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:      Bernd.Muent@euroscript.de
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] modRewrite looks in the wrong subfolder: http://localhost/module/News/article/56.html => http://localhost/index.php?module=News&article=56

Posted by John Hicks <jo...@gulfbridge.net>.
Bernd Muent wrote:
> 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 think the problem is not with your modRewriting but simply the way 
you're building your links. If you make sure they begin with a "/", they 
will be appended to the root of the domain. Without the "/" the link 
will be appended to the directory for the current page. (The user's 
browser does this, not Apache.)

e.g. Your link should be:
<a href='/module/News/article/56/show/1.html' >

and not:
<a href='module/News/article/56/show/1.html' >

It sure looks like that is your problem.

Now, as an aside:

A regular expression tends to be "greedy," i.e. to gobble or consume as 
much of the string as it can when it can.

So generally something like:
^(.*)/
should be:
^([^/]*)/

so that the parenthesized expression doesn't consume more than one 
directory at a time.

But I don't think that's what's causing this problem. It's your html 
links themselves.

Hope that helps,

--John

---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org