neden mod_rewrite tesis çalışıyor?

0 Cevap php

I am trying to do simple rewriting url with using mod_rewrite facility of Apache.
As they said i firstly remove the # from the

LoadModule rewrite_module modules/mod_rewrite.so

from conf. file. then i restart my apache.
now what i want is something like this...

benim ana sayfada bu gibi "aboutus" arasında bir bağlantı onların olduğu bir menü var ..

<a href="aboutus"><strong>about</strong></a>

şimdi benim htaccessfile içinde, ben böyle bir şey yazmıştı ...

Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^aboutus$ tempindex.php?id=3
</IfModule>

ve ben aboutus tıklayın çalıştı sonra kendi gösterileri error HTTP 404 - Not Found.

EDIT: I am trying to make my url as

www.example.com/aboutus

ama gerçek url olacak

www.example.com/tempindex.php?id=3

0 Cevap