Jump to content

how to convert ugly URLs to pretty URLs (mod write)...NooB Question


plodos

Recommended Posts

I have 3 differents ugly links.

http://www.aaa.com/aaa.php?page=2

http://www.aaa.com/bbb.php?page=45

http://www.aaa.com/cccc.php?page=78

 

I want to convert these links pretty URLs.

.htaccess

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)/(.*).html /aaa.php?page=$1
RewriteRule (.*)/(.*).html /bbb.php?page=$1
RewriteRule (.*)/(.*).html /cccc.php?page=$1

 

this is my pagination code link for ugly links

echo "<a href=\"aaa.php?page=$next\">Next >></a></b></p>";
echo "<a href=\"bbb.php?page=$next\">Next >></a></b></p>";
echo "<a href=\"cccc.php?page=$next\">Next >></a></b></p>";

 

I want to convert these links to pretty links. what must I write for this?

These are not working :s

<a href="/?<?php echo $next; ?>/?<?php echo $aaa; ?>.html"></a>
<a href="/?<?php echo $next; ?>/?<?php echo $bbb; ?>.html"></a>
<a href="/?<?php echo $next; ?>/?<?php echo $cccc; ?>.html"></a>

 

pls help me to how to convert? or Could you give me new .htaccess file with pretty URLs?

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.