After a RewriteRule to a PHP script, do an internal redirect from within the PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:07:54Z http://stackoverflow.com/feeds/question/453313 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/453313/after-a-rewriterule-to-a-php-script-do-an-internal-redirect-from-within-the-php 0 After a RewriteRule to a PHP script, do an internal redirect from within the PHP Improfane 2009-01-17T13:29:47Z 2009-01-17T22:22:38Z <p>Hello, I have some mod_rewrite rewrites that correctly redirect the URLs to a script. From within the script, I want to go to a different file without causing another request/changing the URL.</p> <p>I have experimented with Location and meta refreshes but they are not as smooth as desired.</p> <p>Is there a way to change to the script or even return data to the rewrite rules so it can be further rewritten?</p> <p>improfane.domain.com is sent to script which gets user id from database, I then redirect to the profile page with the user ID. I want it to be more smooth, without a redirect. It means that improfane.domain.com would stay in the URL, rather than going to domain.com/?profile=6</p> <p>Thanks</p> http://stackoverflow.com/questions/453313/after-a-rewriterule-to-a-php-script-do-an-internal-redirect-from-within-the-php/453324#453324 1 Answer by Eran Galperin for After a RewriteRule to a PHP script, do an internal redirect from within the PHP Eran Galperin 2009-01-17T13:43:18Z 2009-01-17T13:51:48Z <p>You should use a <a href="http://www.phppatterns.com/docs/design/the_front_controller_and_php" rel="nofollow">front controller</a> (also referred to as <a href="http://devzone.zend.com/node/view/id/70" rel="nofollow">bootstrapping</a>) to determine the route and include the correct script (rather than re-direct). A front controller is a single entry point to your application, and allows you to handle routing as you see fit.</p> <p>Most frameworks have a <a href="http://framework.zend.com/manual/en/zend.controller.front.html" rel="nofollow">nice implementation</a> of a front-controller, but for simple purposes you can roll your own.</p> http://stackoverflow.com/questions/453313/after-a-rewriterule-to-a-php-script-do-an-internal-redirect-from-within-the-php/453326#453326 3 Answer by Eineki for After a RewriteRule to a PHP script, do an internal redirect from within the PHP Eineki 2009-01-17T13:45:15Z 2009-01-17T13:45:15Z <p>You can include the real target file with one of the following php directives:</p> <pre><code>include(filename) require(filename) include_once(filename) require_once(filename) </code></pre>