php - Rewrite url instead of redirect? -
php - Rewrite url instead of redirect? -
i have next rules in .htaccess file supposed rewrite url's not containing index.php in them
rewriteengine on rewritecond %{request_uri} !index.php rewriterule (.*)$ index.php?q=$1
so, wanted open in browser http://example.com/website.com, , have returned response under url, instead of redirected http://example.com/index.php?q=website.com. there way prepare ?
php apache .htaccess mod-rewrite redirect
Comments
Post a Comment