Mobile app version of vmapp.org
Login or Join
Lee4591628

: Apache rewrite rule for all pages after domain name I asked this question on stackoverflow.com: https://stackoverflow.com/questions/8466321/apache-rewrite-rule-for-all-pages-after-domain-name Sorry for redirecting,

@Lee4591628

Posted in: #Apache #ModRewrite

I asked this question on stackoverflow.com: stackoverflow.com/questions/8466321/apache-rewrite-rule-for-all-pages-after-domain-name
Sorry for redirecting, but I wasn't aware of webmasters.stackoverflow and wasn't sure if I should repost it here or just link to it to prevent duplication.

UPDATE

Here's what I have so far:

RewriteEngine On
RewriteCond %{REQUEST_URI} ^/(.+)$
RewriteRule /(.*) archived.example.com/

This is redirecting everything, including example.com alone. I only want the redirect to happen if there is something (anything) after the ".com" (i.e. "/whatever"). I have a static HTML page that is now at example.com, but I want my old DB-backed site to go to archived.example.com.

Anymore ideas?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Lee4591628

1 Comments

Sorted by latest first Latest Oldest Best

 

@Welton855

This should work:

RewriteEngine On
RewriteCond ^/(.+)
RewriteRule /(.*) archived.example.com/

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme