使用 htaccess 重写特定 url
Rewrite specific url using htaccess
我在下面有一个自定义 php 文件 url
http://www.paradox4a.com/wp-content/themes/whitetheme/custompage.php
我希望用户使用虚拟 url 访问上述 link
http://www.paradox4a.com/activate/
是否可以使用 .htaccess rewrite_mod?
在您文档根目录的 htaccess 文件中:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^activate/$ /wp-content/themes/whitetheme/custompage.php [L]
我在下面有一个自定义 php 文件 url
http://www.paradox4a.com/wp-content/themes/whitetheme/custompage.php
我希望用户使用虚拟 url 访问上述 link
http://www.paradox4a.com/activate/
是否可以使用 .htaccess rewrite_mod?
在您文档根目录的 htaccess 文件中:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^activate/$ /wp-content/themes/whitetheme/custompage.php [L]