Hi all.
The company network is a linux box (FC 5) running apache 1.3. It is also closed to the outside.
We have a company wordpress blog. A couple people have complained that they can't subscribe to the RSS feed from their google homepage.
This obviously makes sense, because the network is closed from the outside. So, my question is how can I open access to just the rss feed?
I tried the following in httpd.conf, but it did not work
Any ideas? Can this even be done? Thanks in advance.
The company network is a linux box (FC 5) running apache 1.3. It is also closed to the outside.
We have a company wordpress blog. A couple people have complained that they can't subscribe to the RSS feed from their google homepage.
This obviously makes sense, because the network is closed from the outside. So, my question is how can I open access to just the rss feed?
I tried the following in httpd.conf, but it did not work
Code:
<Location ~ "^/blog/index.php\?feed*$">
Order allow,deny
Allow from All
</Location>
Any ideas? Can this even be done? Thanks in advance.