1

我需要将通配符 url 的内容显示到其特定的子文件夹..

例如

现在http://youbridge.info/watchvideosonline/random-hello.html正在显示主页的内容,而不是我需要显示那个特定的subfolder/index.php内容(即内容http://youbridge.info/watchvideosonline/

我尝试了下面的代码,但它不起作用

RewriteRule ^([^/]+)/?$ index.php?filter=$1 [QSA,L]
4

1 回答 1

1

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/.*$ /$1/index.php [L]
于 2013-07-17T06:55:38.920 回答