Re: [users@httpd] mod_rewrite

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 5/24/06, Bob Smith <idonotwantany@xxxxxxxxx> wrote:
On 5/24/06, Robert Ionescu <robsiegen@xxxxxxxxxxxxxx> wrote:

> Bob Smith wrote:
> > I'm trying to remove two directories from the path of a website, but I
just
> > can't seem to get the mod_rewrite syntax right.
> >
> > I have a url coming in with a url like
> >
http://www.mysite.com/directoryone/directorytwo/mypage.php?key=value
> >
> > And I'm trying to redirect it to
http://www.mysite.com/mypage.php?key=value
>
> Are your directories constants? Or are they some kind variable?
>
> To force such an external redirect, you could use in your httpd.conf
>
> RewriteRule ^/directoryone/directorytwo/(mypage\.php)$
/$1 [R=301,L]


Yeah, the directories I want to remove will be the same.  but the pages will
be different (I'm hoping I don't have to do one for each individual page)

I tried:

RewriteEngine On
RewriteRule ^/directoryone/directory/two/(.*)$ /$1
[QSA,R=301]

But that's throwing a 500 error


1) Don't forget your [L]ast flag.

[QSA,R=301,L]

2) Are your RewriteRules in a <Location>?  If so, then the location
dir is already stripped before the RewriteRule gets called.

3) I am not sure QSA is doing what you want here (not tried it).  Try these:

RewriteRule ^/directoryone/directorytwo/(.*)$ "/$1?" [QSA,R=301,L]
RewriteRule ^/directoryone/directorytwo/(.*)$ "/$1?%{QUERY_STRING}" [R=301,L]

4) Turn on debugging with RewriteLogLevel 2 and RewriteLog /some/log/file.

-B

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



[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux