This is a discussion on Diretory Redirection within the Apache Web Server forums, part of the Web Server and Related Forums category; Hello, Probably an easy one for you Apache Masters! Say I've got these web pages: /index.php /summary.php /...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
Probably an easy one for you Apache Masters! Say I've got these web pages: /index.php /summary.php /doc/info1.php /doc/info2.php /test/test1.php /test/test2.php Each document included in /doc and /test are listed in summary.php. So I'd like to configure my .htaccess to redirect both /doc/ and /test/ to /summary.php (instead of listing directory index). I hope it's clear. So how can I do that? Thanks for your time. Yannick |
|
|||
|
vendredi5h@gmail.com wrote:
> Hello, > > Probably an easy one for you Apache Masters! > > Say I've got these web pages: > /index.php > /summary.php > /doc/info1.php > /doc/info2.php > /test/test1.php > /test/test2.php > > Each document included in /doc and /test are listed in summary.php. So > I'd like to configure my .htaccess to redirect both /doc/ and /test/ to > /summary.php (instead of listing directory index). I hope it's clear. > > So how can I do that? Possibly something like this if I understand that correctly... RewriteEngine On RewriteRule ^(doc|test)/?$ summary.php [L] -- Justin Koivisto, ZCE - justin@koivi.com http://koivi.com |
|
|||
|
Justin Koivisto wrote: > vendredi5h@gmail.com wrote: > > Hello, > > > > Probably an easy one for you Apache Masters! > > > > Say I've got these web pages: > > /index.php > > /summary.php > > /doc/info1.php > > /doc/info2.php > > /test/test1.php > > /test/test2.php > > > > Each document included in /doc and /test are listed in summary.php. So > > I'd like to configure my .htaccess to redirect both /doc/ and /test/ to > > /summary.php (instead of listing directory index). I hope it's clear. > > > > So how can I do that? > > Possibly something like this if I understand that correctly... > > RewriteEngine On > RewriteRule ^(doc|test)/?$ summary.php [L] Works great! Thanks. |