Forum

Thread tagged as: Question
Drew McLellan

Drew McLellan 2638 points
Perch Support

Can you show us what you have?

.htaccess has this:

RewriteRule ^perchtestsite/detail/([a-z0-9-]*)$ /perchtestsite/detail.php?s=$1

Drew McLellan

Drew McLellan 2638 points
Perch Support

Just that? Nothing else?

Well...

<IfModule mod_rewrite.c>  
    RewriteEngine on  
RewriteRule ^perchtestsite/detail/([a-z0-9-]*)$ /perchtestsite/detail.php?s=$1
</IfModule>
Drew McLellan

Drew McLellan 2638 points
Perch Support

That looks ok to me. When you say it doesn't work, what happens? Please provide as much information as you can.

Get a 404 error - check it for yourself.

Same here, btw.

Try with:

<IfModule mod_rewrite.c>  
    RewriteEngine on
    RewriteBase /perchtestsite

    RewriteRule ^detail/([a-z0-9-]*)$ detail.php?s=$1
</IfModule>

Haha!

That works for me Andrés - thank you very much!

Works for me too. Thanks, Andrés.