I can't figure out why my url rewriting isn't working. Please help.
I have an .htaccess file in /public_html that contains the following:
I'm trying to get:
domain.com/work.php?piece=name
to rewrite as:
domain.com/work/name
Any thoughts?
I have an .htaccess file in /public_html that contains the following:
Code:
Options +FollowSymLinks All RewriteEngine on RewriteRule work/(.*) work.php?piece=$1
domain.com/work.php?piece=name
to rewrite as:
domain.com/work/name
Any thoughts?
Comment