Jump to content

Server setting for clean url - Help


DingDong

Recommended Posts

My new hosting company needs server settings to display clean url. 

 

The htaccess code following does not work

RewriteRule ^test/(.*)$ testitemnews.php?id=$1 [QSA,L]

 

while this works with .php extension

RewriteRule ^test.php/(.*)$ test.php?id=$1 [QSA,L]

 

Could someone help me to figure out what server setting is wrong so I can ask them to change?

 

Link to comment
Share on other sites

test/something is technically two folders deep, whereas test.php/(.*) is in the top level folder. There fore the relative second value of test.php?id=$1 is pointing at the wrong folder. Simply placing a forward slash before it should fix that issue.

 

RewriteRule ^test/(.*)$ /testitemnews.php?id=$1 [QSA,L]

 

Assuming of course that testitemnews is in the root folder.

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.