|
|
Browse by Tags
All Tags » regexp » .htaccess
-
I'm updating a website.
In the new version the website uses url-friendly urls
so I'm looking for a way to redirect the old urls
e.g.
http://www.mysite.com/articles.php?id=1
is replace by:
http://www.mysite.com/articles/article/1
In my .htaccess file I have the following code:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ...
|
|
|