Htaccess Redirect Scenario, featuring WordPress?

I'd say something like this: # Don't rewrite anything in /fubar RewriteRule ^fubar - L # Redirect everything to /fubar RewriteRule ^(.*)$ /fubar/$1 R=301,L,QSA.

What you want: RewriteEngine On RewriteRule ^fubar/ - L // protect from loop, not sure if its really necessary RewriteRule ^. *$ fubar/$0 L,QSA Now to redirect only if the file path as given from the user does not exist: RewriteEngine On RewriteCond %{REQUEST_FILENAME}! -f RewriteRule ^.

*$ fubar/$0 L,QSA.

This is easier to do using proxies: ProxyRequests Off Order deny,allow Allow from all ProxyPass / test.com/fubar/" rel="nofollow">test.com/fubar/ ProxyPassReverse / test.com/fubar.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions