Jump to content

.htaccess mod_rewrite issues


Terminator3d

Recommended Posts

Hi guys im new here so please be nice  :P

Ok im having some problems with understanding how htaccess files work with php. Ive written a site in php which uses dynamic content so I want to rewrite the querystrings.

As it stands within the php code ive written it so the URLs are outputted with the format:
http://www.mysite.com/view.php?tn=all&order=1&page=1

And im after something like:
http://www.mysite.com/view/all/1/1

Do I need to modify the format I output these URLs within the php....or does the htaccess file do everything?

As it stands ive got:

Options +FollowSymLinks
RewriteEngine on
RewriteRule view/(.*)/(.*)/(.*)/$ view.php?tn=$1&order=$2&page=$3

Can anyone help me out with this please? Ive been trying to get this working a while and arent sure what im doing wrong. Everything I try either doesnt work or gets a server error.

Thanks in advance.
Link to comment
Share on other sites

Mod_write will not rewrite the URLs for your links. So you'll have to rewrite the links in your code to the new format manually.

mod_rewrite runs when a page request is made to to the server. It then sees if the url matches one of the rewritre rules, if it does it'll process the url in the rewrite rule.
Link to comment
Share on other sites

Ive now altered the links into a format like:
http://www.mysite.com/view_value/all/1/1

Now Im getting the following 404 error:

The requested URL /view_value/all/1/1 was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

My htaccess file looks like:

Options +FollowSymLinks
RewriteEngine on
RewriteRule view_value/(.*)/(.*)/(.*)/$ /view_value.php?tn=$1&order=$2&page=$3

Any ideas where im going wrong at all?

Thanks
Link to comment
Share on other sites

[color=blue]
OK, I got this info from some articles on net, it didn't work for me.
you can give a try.
Make sure that mod_rewrite module is loaded on your apache server, to do this uncomment following lines in httpd.conf -
1. LoadModule rewrite_module modules/mod_rewrite.so
2. ClearModuleList
3. AddModule mod_rewrite.c

[/color]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.