Answers for "rewrite .html htaccess"

0

htaccess rewrite rule

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
Posted by: Guest on October-07-2020
0

rewrite requests htaccess

RewriteEngine On
RewriteRule  index.php  home.php
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language