htaccess Elite

.htaccess tutorial


All times are UTC [ DST ]





Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: .htaccess rewrite doesn't work
PostPosted: 12 Sep 2008 18:23 
Offline

Joined: 12 Sep 2008 18:11
Posts: 1
Hi,

I am new for using .htaccess file. Now I'm trying to get a friendly url using the htaccess file, as followed:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^detail/id/(.*)/ detail.php?id=$1
RewriteRule ^detail/id/(.*) detail.php?id=$1
and upload it to "new" folder.
I expect to get an url like http://www.myweb.com/new/detail/id/234 from the original url http://www.myweb.com/new/detail.php?id=234. However, the .htaccess doesn't do anything.
Second, I finally able to upload to other server, but it just doesn't work.. I still see http://www.myweb.com/detail.php?id=234 on url bar.

Could anyone help me with this?

thanks,
ayok


Top
 Profile  
 
 Post subject: Re: .htaccess rewrite doesn't work
PostPosted: 28 Sep 2008 15:05 
Offline

Joined: 28 Sep 2008 13:49
Posts: 2
ayok wrote:
Hi,

I am new for using .htaccess file. Now I'm trying to get a friendly url using the htaccess file, as followed:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^detail/id/(.*)/ detail.php?id=$1
RewriteRule ^detail/id/(.*) detail.php?id=$1
and upload it to "new" folder.
I expect to get an url like http://www.myweb.com/new/detail/id/234 from the original url http://www.myweb.com/new/detail.php?id=234. However, the .htaccess doesn't do anything.
Second, I finally able to upload to other server, but it just doesn't work.. I still see http://www.myweb.com/detail.php?id=234 on url bar.

Could anyone help me with this?

thanks,
ayok


Try this code
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /

RewriteRule ^new/detail/id/(.*)$ detail.php?id=$1 [L]


This thing won't upload your page to another folder, but you will able to access your page like http://www.yourdomain.com/new/detail/id/500 and get the results from the dynamic page http://www.yourdomain.com/detail.php?id=500


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: MSN [Bot], MSNbot Media and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB