Terminator3d Posted August 26, 2006 Share Posted August 26, 2006 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=1And im after something like:http://www.mysite.com/view/all/1/1Do 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 +FollowSymLinksRewriteEngine onRewriteRule view/(.*)/(.*)/(.*)/$ view.php?tn=$1&order=$2&page=$3Can 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. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted August 26, 2006 Share Posted August 26, 2006 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. Quote Link to comment Share on other sites More sharing options...
Terminator3d Posted August 26, 2006 Author Share Posted August 26, 2006 Ive now altered the links into a format like:http://www.mysite.com/view_value/all/1/1Now 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 +FollowSymLinksRewriteEngine onRewriteRule view_value/(.*)/(.*)/(.*)/$ /view_value.php?tn=$1&order=$2&page=$3Any ideas where im going wrong at all?Thanks Quote Link to comment Share on other sites More sharing options...
invincible_virus Posted September 3, 2006 Share Posted September 3, 2006 [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.so2. ClearModuleList3. AddModule mod_rewrite.c[/color] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.