即时尝试做rewite,但由于某种原因,它不能正确重写。我的结构是假设这个样子http://mysite.com/tv-show/showname/episode
而不是它做http://mysite.com/tv-show/episode
.htaccess文件不重写url
这是我的代码
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^tv-shows/(.*?)/(.*?)/ /index.php?name=$2 [NC]
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
它看起来很好,有什么我思念?
你的例子说,电视节目,但你的代码表示,电视节目 – duncan