Redirect page */main.php to an external one

josepcols

Joined: 2009-10-14
Posts: 7
Posted: Wed, 2009-10-14 13:12

Hi:

Are they a way to redirect the */main.php page (without any parameters) to an external page?

example: redirect http://mysite.com/gallery2/main.php ==> http://mysite.com/entry/main.html

I can't find any way searching on Forums.

For me, it would be a solution if the redirection is made using an apache feature like rewrite or redirect, but I've unable to do that because of parameters: if I redirect main.php, all URLs that contains main.php with parameters are redirected too.

Thanks in advance

Gallery version = 2.3 core 1.3.0
API = Core 7.54, Module 3.9, Theme 2.6, Embed 1.5
PHP version = 5.2.10-0.dotdeb.1 apache2handler
Webserver = Apache
Database = mysqli 5.0.75-0ubuntu10.2, lock.system=database
Toolkits = ArchiveUpload, Exif, Getid3, LinkItemToolkit, Thumbnail, Gd, ImageMagick, SquareThumb
Acceleration = full/604800, partial/604800
Operating system = Linux gordito.netbck.com 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 18:40:08 UTC 2009 i686
Default theme = matrix
gettext = enabled
Locale = en_US
Browser = Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.13) Gecko/2009080315 Ubuntu/9.04 (jaunty) Firefox/3.0.13
Rows in GalleryAccessMap table = 93
Rows in GalleryAccessSubscriberMap table = 6747
Rows in GalleryUser table = 5
Rows in GalleryItem table = 6744
Rows in GalleryAlbumItem table = 231
Rows in GalleryCacheMap table = 1788

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 22892
Posted: Wed, 2009-10-14 19:17

You could do this with a .htaccess rule but I don't have a clue on how to do that.
You could do:

{if empty($theme.parents)}
stuff on root album
{/if}

so I guess you would want:

{if empty($theme.parents)}
{if $theme.pageType != 'admin'}
<meta http-equiv="refresh" content="2;url=http://someplace.com">
{/if}
{/if}

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
josepcols

Joined: 2009-10-14
Posts: 7
Posted: Wed, 2009-10-14 20:40

Thanks, Dave.
But: What file I need to modify?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 22892
Posted: Wed, 2009-10-14 21:53

album.tpl of the theme you are using

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team