I am working on a project for a client who has a blog/news page as part of their website. This is all fine however they have requested that they have custom permalinks instead of the standard issue php variables.
I have used the generator at searchfriendlyurls.com to create the rewrite rule. I have added this to my .htaccess file which is located in the root folder of the website however when I click on the link it just sends me to my hosts 404 error page. Any suggestions. .htaccess file below:
Options -Multiviews
RewriteEngine On
RewriteBase /
# Force search engines to use domain.example.org.uk
RewriteCond %{HTTP_HOST} !^domain\.example\.org\.uk$
RewriteRule ^(.*) http://domain.example.org.uk/$1 [R=301,L]
# Specify search friendly URLs
RewriteRule ^media/news/([a-z]+)/([a-z]+)/([a-z]+)/([a-z]+)$ /media/news/article.php?article_url_year=$1&article_url_month=$2&article_url_title=$3&article_id=$4 [L]
# Generated for free at SearchFriendlyURLs.com
Any suggestions would be much appreciated