Jump to content

Need help with url rewrite.


renfley

Recommended Posts

Hey guys i need to change the url field. 

 

This is what i currently have, 

 

site.com/?page=home
and
site.com/?admin=home
 
Here is the .htaccess
 
RewriteEngine On
#Look for the word "wiki" followed by a slash, and then the article title
RewriteRule   ^?admin=home /admin/home 
 
dunno if im on the write track but ive never done url rewrites. 
 
 
i would like to see site.com/page/home
 
Link to comment
https://forums.phpfreaks.com/topic/279320-need-help-with-url-rewrite/
Share on other sites

Rewrite from /page/home to /?page=home.

RewriteRule ^/page/home ?page=home [L]
If that doesn't work then try without the first slash: ^page/home.

 

Do you have more pages that go from /page/abc to ?page=abc? If so you should make a generic pattern for all of them...

Ok so it gives me a internal 500 error and ive tried a few different methods still no luck

 

My Test site is spaxus.com

 

if you click the home menu button... it go to http://spaxus.com/?page=home

 

I would like it to show 

http://spaxus.com/page/home/

 

So can anyone help me out? 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.