0

I would like to create permalink for my url. So I have added .htaccess file to my root but it does not change.

vid is post id and id is page index. Thanks.

http://www.yatha.tv/play.php?vid=954&id=2

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /play.php?vid=$1&id=$2 [L]
</IfModule>
Alex Aung
  • 2,637
  • 5
  • 34
  • 63

1 Answers1

0

Check the Apache module.

To activate the module, the following line in httpd.conf needs to be active:

LoadModule rewrite_module modules/mod_rewrite.so

To see whether it is already active, try putting a .htaccess file into a web directory containing the line:

RewriteEngine on

if this works without throwing a 500 internal server error, and the .htaccess file gets parsed, URL rewriting works.

simpleigh
  • 2,854
  • 18
  • 19
ivanfromer
  • 329
  • 1
  • 5