【发布时间】:2014-07-11 02:30:24
【问题描述】:
我正在尝试让我的 htaccess 文件使用它:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
重写这个网址:
http://cheesecakebb.org/index.php?action=vn
【问题讨论】:
-
重写为cheesecakebb.org/index/vn 或类似的东西
-
@user3791747:这是 wordpress 还是您正在使用的其他 PHP/CMS 框架?
-
@anubhava 这是来自 wordpress 的 htaccess,是的
标签: apache .htaccess mod-rewrite