I have installed rewrite_module and modified php.ini on Apache.
php.ini
I create rewrite.php and .htaccess files, but it\'s not working.>
rewrite.php
.htaccess
It's working.
my solution is:
1.create a test.conf into /etc/httpd/conf.d/test.conf
2.wrote some rule, like:
RewriteEngine On RewriteRule ^link([^/]*).html$ rewrite.php?link=$1 [L]
3.restart your Apache server.
4.try again yourself.