Rewrite rule for non-wordpress page
-
Hi everyone,
I have created a non-wordpress page and i want to change how the url looks like so instead of showing its actuall path which is https://www.abc.com/portfolio.php , i want it to be https://www.abc.com/portfolio
The code that i have in .htaccess file is this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Rewriterule ^https://abc.com/archive.php https://abc.com/archive/
</IfModule>Your help will be saving me tons of time .
Thanks,
Noura
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Rewrite rule for non-wordpress page’ is closed to new replies.