Skip to content

Instantly share code, notes, and snippets.

@soderlind
Forked from paulcook/config.ru
Created December 4, 2012 20:54
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save soderlind/4208560 to your computer and use it in GitHub Desktop.
Save soderlind/4208560 to your computer and use it in GitHub Desktop.
config.ru for Pow + Wordpress - based on http://stuff-things.net/2011/05/16/legacy-development-with-pow/. Added rewrite rule for WordPress Multi Site. More at http://soderlind.no/archives/2012/12/02/wordpress-and-pow/
# config.ru for Pow + Wordpress, based on http://stuff-things.net/2011/05/16/legacy-development-with-pow/
# added hackery to work around wordpress issues - Patrick Anderson (patrick@trinity-ai.com)
# added rubygems, replaced script_path with script from path_parts, added to_return to fix return error - Paul Cook
# clearly this could be cleaner, but it does work
# added rewrite rule for WordPress Multi Site - Per Soderlind (see also http://soderlind.no/archives/2012/12/02/wordpress-and-pow/)
require 'rubygems'
require 'rack'
require 'rack-legacy'
require 'rack-rewrite'
# patch Php from rack-legacy to substitute the original request so
# WP's redirect_canonical doesn't do an infinite redirect of /
module Rack
module Legacy
class Php
def run(env, path)
config = {'cgi.force_redirect' => 0}
config.merge! HtAccess.merge_all(path, public_dir) if @htaccess_enabled
config = config.collect {|(key, value)| "#{key}=#{value}"}
config.collect! {|kv| ['-d', kv]}
script, info = *path_parts(path)
env['SCRIPT_FILENAME'] = script
env['SCRIPT_NAME'] = script.sub ::File.expand_path(public_dir), ''
env['REQUEST_URI'] = env['POW_ORIGINAL_REQUEST'] unless env['POW_ORIGINAL_REQUEST'].nil?
super env, @php_exe, *config.flatten
end
end
end
end
INDEXES = ['index.html','index.php', 'index.cgi']
use Rack::Rewrite do
# Rewrite rule for WordPress Multi Site
rewrite %r{.*/files/(.+)}, 'wp-includes/ms-files.php?file=$1'
# redirect /foo to /foo/ - emulate the canonical WP .htaccess rewrites
r301 %r{(^.*/[\w\-_]+$)}, '$1/'
rewrite %r{(.*/$)}, lambda {|match, rack_env|
rack_env['POW_ORIGINAL_REQUEST'] = rack_env['PATH_INFO']
if !File.exists?(File.join(Dir.getwd, rack_env['PATH_INFO']))
return '/index.php'
end
to_return = rack_env['PATH_INFO']
INDEXES.each do |index|
if File.exists?(File.join(Dir.getwd, rack_env['PATH_INFO'], index))
to_return = File.join(rack_env['PATH_INFO'], index)
end
end
to_return
}
# also rewrite /?p=1 type requests
rewrite %r{(.*/\?.*$)}, lambda {|match, rack_env|
rack_env['POW_ORIGINAL_REQUEST'] = rack_env['PATH_INFO']
query = match[1].split('?').last
if !File.exists?(File.join(Dir.getwd, rack_env['PATH_INFO']))
return '/index.php?' + query
end
to_return = rack_env['PATH_INFO'] + '?' + query
INDEXES.each do |index|
if File.exists?(File.join(Dir.getwd, rack_env['PATH_INFO'], index))
to_return = File.join(rack_env['PATH_INFO'], index) + '?' + query
end
end
to_return
}
end
use Rack::Legacy::Php, Dir.getwd
use Rack::Legacy::Cgi, Dir.getwd
run Rack::File.new Dir.getwd
@louy
Copy link

louy commented Apr 12, 2014

I'm having a problem. When I put the site in the Public directory PHP scripts get downloaded. And when I put them outside of it static resources (like JS and CSS) make an error (like it's trying to parse them).
Is there a way to parse PHP files inside the Public directory?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment