ZenphotoCMS Forum
Apache rewriterule for old rss feed - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Apache rewriterule for old rss feed (/thread-3835.html)



Apache rewriterule for old rss feed - aquila - 2008-09-29

I've migrated my old gallery2 installation to zenphoto and I'm very happy about it.
But now I want to redirect my RSS feeds and that does not work, htaccess seems like a mystery. Can anyone explain me how to rewrite

main.php to /
and main.php?g2_view=rss.Render&g2_name=feed to /rss.php

These things are so strange, my regular expressions don't seem to work??




Apache rewriterule for old rss feed - aquila - 2008-09-29

Got it! Adding this to .htaccess did the job:

RewriteCond %{QUERY_STRING} g2.*rss
RewriteRule ^main.php$ /rss.php [R,L]
RewriteRule ^main.php$ / [R,L]