Login or Sign up Help | Site Map
Connecting Tech Pros Worldwide

need help about urlrewrite

Question posted by: wesley1970 (Newbie) on July 17th, 2008 08:44 AM
In apache, i set override all,
open rewrite mode..
I have installed wordpress into it. It can rewrite url. That means my setting is correct.
Look at wordpress htaccess, something like this

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>

Ok, now i have a file, i want to click it to <a href="test.php?id=123">click </a>

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d


RewriteRule ->Here what should I write to change it into->test.html/id/123 -->Something like this?



</IfModule>
Would you like to answer this question?
Sign up for a free account, or Login (if you're already a member).
realin's Avatar
realin
Familiar Sight
242 Posts
July 17th, 2008
12:31 PM
#2

Re: need help about urlrewrite
i always wanted to ask the same question, but in a different swing ..

I want to know if i have a site with bunch of pages having URL pattern like
Code: ( text )
  1. http://mypage.php?id=90&act=register


then writing a code(given below) in .htaccess file would turn my links into
http://mypage.php/90/register automatically ?

If no, then how do wordpress/drupal/joomla do it ?
If yes, then why isn't my .htaccess file doing it ..
Here is the code which i am expecting to serve the purpose..

Code: ( text )
  1. RewriteEngine on
  2. RewriteRule ^mypage/(.*)/(.*)$ mypage.php?id=$1&act=$2[NC]


Please let me know, thanks :)

P.S. I wanted to avoid a new thread, so i added the question in an existing thread for more relevant answers. Hope Admin won't mind it..

Reply
realin's Avatar
realin
Familiar Sight
242 Posts
July 18th, 2008
04:56 AM
#3

Re: need help about urlrewrite
No replies :O
do i need to post this in PHP forum ? But then its gonna be a wrong section, please help me, its urgent

Reply
Reply
Not the answer you were looking for? Post your question . . .
180,428 Experts ready to help you find a solution.
Sign up for a free account, or Login (if you're already a member).

Top Apache Forum Contributors