Skip to content Skip to sidebar Skip to footer

Change .php Url With Id Into .html

Given the PHP URL course.php?id=10 I want it to redirect to course.html and I want to use the id=10 on this page. How can I do this?

Solution 1:

You can't cleanly rewrite the url and not include the variable somewhere. You'll need to do something like so:

RewriteRule ^([0-9]+)/([^.]+)\.html $2.php?id=$1 [L]

Which will work for http://example.com/10/course.html.

Solution 2:

Create a .htaccess file and add the following:

RewriteEngine On
RewriteRule ^([^.]+)\.html$ $1.php [L]

Upload this to the root of your files (most of the time it's /var/www/ or /home/user/public_html/.

Post a Comment for "Change .php Url With Id Into .html"