vote up 0 vote down star

I have transferred my website from old server to shared server.

All my code is in "lfdata/main/com" under "public_html" on the shared server.

The clean URL would look like follows:

http://ip-address/~name/how

and the rewritten URL should be:

http://ip-address/~name/lfdata/main/com/how.php

So can anyone suggest a rewrite rule for creating above URL?

flag

0% accept rate

2 Answers

vote up 2 vote down

Try this rule:

RewriteCond %{REQUEST_URI} !^/~[^/]+/lfdata/main/com/
RewriteRule ^(~[^/]+)/(.+) $1/lfdata/main/com/$2.php [L]

This will rewrite any request of /~name/foobar internally to /~name/lfdata/main/com/foobar.php.

link|flag
+1. Don't forget QSA, I think this is desired as well. – Tomalak May 22 at 11:46
QSA is not necessary if you don’t modify the query. – Gumbo May 22 at 11:53
I have tried above but it not works? Can I paste my .htaccess file here ? – Chetana May 23 at 5:28
If it’s not too long, sure. – Gumbo May 23 at 6:48
<FilesMatch "\.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template)$"> Order allow,deny </FilesMatch> Options -Indexes Options +FollowSymLinks </Files> DirectoryIndex index.php <IfModule mod_php4.c> </IfModule> <IfModule sapi_apache2.c> </IfModule> <IfModule mod_php5.c> </IfModule> <IfModule mod_expires.c> <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/~[^/]+/lf/main/com/ RewriteRule ^(~[^/]+)/(.+) $1/lf/main/com/$2.php [L] </IfModule> – Chetana May 23 at 7:58
show 9 more comments
vote up 0 vote down

this will do your rewrite including query string params

RewriteRule ^~name/how(.*)$ ~name/lfdata/main/com/how.php$1
link|flag
The query cannot be matched with the RewriteRule directive. That’s only possible with the RewriteCond directive. – Gumbo May 23 at 6:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.