I'm trying to install wordpress in my rails app. I downloaded and configure wordpress in my rails/public directory. I also configured wp.config file mysql info. However, after apache restart app/blog/index.php I don't see wordpress setup page but I get a prompt to download index.php file. I must be missing some step here? Here is my apache file
...
PassengerEnabled Off
RewriteEngine On
RewriteBase /testme_wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /testme_wordpress/index.php [L]
...