Jump to content

Another ForceType question


Recommended Posts

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.55
PHP/5.1.2
Server running on port 8080

What 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=1

What 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.ini
PHPIniDir "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
Share on other sites

  • 10 months later...
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.