Jump to content

Changing dynamic URLs into Static URLs


SagaLore

Recommended Posts

I\'m using a simple CMS that references content with ?id=27. I know that Google will spider some dynamic links but to be on the safe side I want to try and make that static.

 

I have created an .htaccess file with:

 

<FilesMatch \"^id$\">

ForceType application/x-httpd-php

</FilesMatch>

 

And then another file \"id\" with:

 

<?php

 

$idpath = explode(\"/\",$_SERVER[\'PATH_INFO\']);

$newid = intval($idpath[1]);

 

 

include(\"http://www.mysite.com/?id=$newid\");

 

?>

 

 

What this does it turn:

http://www.mysite.com/?id=27

into:

http://www.mysite.com/id/27

 

Two dilemmas:

 

I don\'t want to have to use an absolute path in the id file because this feature is going to be made available to other users of the CMS I\'m using.

 

When you use the static path, relative links in the html that is included are broken. This is because they think they are in another subdirectory when in fact it\'s just smoke and mirrors.

 

So instead of rewriting all my html with absolute paths or doing some other hack, I would like to accomplish this:

 

http://www.mysite.com/id27

 

That way the relative links work okay. I was looking at Apache core directives and came up with something like:

 

<Location ~ \"/id*\">

//some type of parsing here

</Location>

 

But I\'m rather new to both php and .htaccess so for now this is getting the best of me. I know what I want to do logically but don\'t know what to do syntactically.

 

Ideas?

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.