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
https://forums.phpfreaks.com/topic/207623-server-setting-for-clean-url-help/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.