Tasos Posted April 5, 2014 Share Posted April 5, 2014 Hello, i need to change the display url in the browser with httaccess This is the link in the browser: fun.php?search=&submit=search&page=1 And i want to change in to this fun/page/1 This is what i try to do, I created a .httacces file in public html with this text in it. RewriteEngine On # Rewrite all php files RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php [L] # Rewrite blog pagination RewriteRule ^fun/page/([a-zA-Z_-]+)/([0-9]?) fun.php?search=&submit=search&page=$1 [L,QSA] But it doenst work. Thanks in advance for any help. Quote Link to comment https://forums.phpfreaks.com/topic/287534-how-to-change-the-pagination-url-in-httacces/ Share on other sites More sharing options...
requinix Posted April 5, 2014 Share Posted April 5, 2014 Well, for one, it doesn't match what you described. You said "fun/page/1" but your RewriteRule says "fun/page/stuff/1". And that "stuff" isn't going into the replacement URL so I guess it doesn't matter? Looks like it's supposed to be the search term though? Quote Link to comment https://forums.phpfreaks.com/topic/287534-how-to-change-the-pagination-url-in-httacces/#findComment-1475023 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.