Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Programming Talk
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 10-13-2008, 10:41 PM   #1
Programmer Extraordinaire
War Room Member
 
Join Date: Jun 2007
Location: Olathe, KS USA.
Posts: 700
Thanks: 39
Thanked 30 Times in 26 Posts
Social Networking View Member's FaceBook Profile 
Default .htaccess question

Hey, I have limited experience with .htaccess and mod_rewrite, so naturally I'm having a small issue. I have it set so mysite.com/keyword/value redirects to mysite.com/phppage.php?value=value. This works fine, but I can't seem to figure out how to get the address bar to keep showing mysite.com/keyword/value instead of the actual php page with the variable value. Everything I've looked at seems to say that it just naturally does that, but I can't figure why it's not doing it for me.

Any ideas?

I'm tired of my signature... Deleted.
Bishop81 is offline   Reply With Quote
Old 10-13-2008, 11:08 PM   #2
HyperActive Warrior
 
Join Date: Jul 2007
Location: , , USA.
Posts: 187
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: .htaccess question

What is the contents of your htaccess file?

Felecan - Innovative Web Solutions For Small and Mid-size Companies!
Emilian is offline   Reply With Quote
Old 10-13-2008, 11:53 PM   #3
Programmer Extraordinaire
War Room Member
 
Join Date: Jun 2007
Location: Olathe, KS USA.
Posts: 700
Thanks: 39
Thanked 30 Times in 26 Posts
Social Networking View Member's FaceBook Profile 
Default Re: .htaccess question

Code:
RewriteEngine on
RewriteBase /

# RewriteRule ^local/([-_A-Za-z0-9]+)$ http://www.thesite.com/innertemplate.php?local=$1 [L]
RewriteCond %{REQUEST_URI} ^/chiropractor/.*$ [NC]
RewriteRule ^chiropractor/([-_A-Za-z0-9]+)$ http://www.thesite.com/innertemplate.php?local=$1 [R,L]

I'm tired of my signature... Deleted.
Bishop81 is offline   Reply With Quote
Old 10-15-2008, 09:32 PM   #4
Programmer Extraordinaire
War Room Member
 
Join Date: Jun 2007
Location: Olathe, KS USA.
Posts: 700
Thanks: 39
Thanked 30 Times in 26 Posts
Social Networking View Member's FaceBook Profile 
Default Re: .htaccess question

Quote:
Originally Posted by Bishop81 View Post
Code:
RewriteEngine on
RewriteBase /

# RewriteRule ^local/([-_A-Za-z0-9]+)$ http://www.thesite.com/innertemplate.php?local=$1 [L]
RewriteCond %{REQUEST_URI} ^/chiropractor/.*$ [NC]
RewriteRule ^chiropractor/([-_A-Za-z0-9]+)$ http://www.thesite.com/innertemplate.php?local=$1 [R,L]
In case somebody else needs help with this type of issue:
Code:
RewriteEngine on
#RewriteBase /

RewriteRule ^chiropractor/([-_A-Za-z0-9]+)$ /innertemplate.php?local=$1 [L]
This code worked for me.

I'm tired of my signature... Deleted.
Bishop81 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Programming Talk

Tags
htaccess, question

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 09:40 AM.