Search code examples
.htaccess

How to redirect all URLs to single page using .htaccess


How can I redirect all the urls to one single page and admin to admin-folder-name ?

Example

http://domainname.com/about should point to redirect.php?url=about
http://domainname.com/contact should point to redirect.php?url=contact

But at the same time

http://domainname.com/admin should point to admin folder ?

My current .htaccess is

RewriteEngine on 
RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]

I'm stuck with /admin.


Solution

  • Try adding a condition that excludes redirecting /admin:

    RewriteEngine on 
    RewriteCond $1 ^/?admin
    RewriteRule (.*) redirect.php?page_url=$1 [QSA,L]