dereke55 Posted May 1, 2006 Share Posted May 1, 2006 I've read post after post about configuring apache and php to create "clean" urls and I'm having some problems.Here's my setup:Apache/2.0.55PHP/5.1.2Server running on port 8080What I want to do:I want the url: localhost:8080/news/1 to point to script: news.php with 1 as the parameter instead of: news.php?id=1What works now:[a href=\"http://localhost:8080/news.php?id=1\" target=\"_blank\"]http://localhost:8080/news.php?id=1[/a]Problem:[a href=\"http://localhost:8080/news/1\" target=\"_blank\"]http://localhost:8080/news/1[/a] returns back"The requested URL /news/1 was not found on this server."The only changes I made to the httpd.conf are below:The below changes were added to the very end of the file[code]# For PHP 5 do something like this:LoadModule php5_module "c:/php/php5apache2.dll"AddType application/x-httpd-php .php# Configure the path to php.iniPHPIniDir "C:/php"# Remove extension<Files news> ForceType application/x-httpd-php</Files> [/code]I added the AcceptPathInfo to line 241 of the file[code]<Directory /> Options FollowSymLinks AllowOverride All AcceptPathInfo On</Directory>[/code]I would prefer to use the ForceType method instead of the mod_rewrite method for performance reasons. So if anyone has any suggestions, please let me know.Thanks Link to comment https://forums.phpfreaks.com/topic/8811-another-forcetype-question/ Share on other sites More sharing options...
monkey_magix Posted March 9, 2007 Share Posted March 9, 2007 Did you manage to get this working? i'm facing the same problem Link to comment https://forums.phpfreaks.com/topic/8811-another-forcetype-question/#findComment-203280 Share on other sites More sharing options...
wildteen88 Posted March 9, 2007 Share Posted March 9, 2007 Look in to mod_rewrite. This is what people use to make clean user friendly URL's. Check out [url=http://www.yourhtmlsource.com/sitemanagement/urlrewriting.html]this site[/url] for getting started with mod_rewrite. Link to comment https://forums.phpfreaks.com/topic/8811-another-forcetype-question/#findComment-203659 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.