我使用url rewrite将动态转换为静态网址。
我的静态网址
gulp.watch(['app/jade/*.jade', 'app/stylus/*.styl'], ['browser-watch']);
动态网址
http://ncrjobs.in/jobs-details.php/id/10898/job_company_name/LPIT%20Software%20Solutions%20Pvt%20Ltd%20OPC
的.htaccess
http://ncrjobs.in/jobs-details.php?id=10898&job_company_name=LPIT Software Solutions Pvt Ltd OPC
PHP5.ini
RewriteEngine On
RewriteCond %{REQUEST_URI} !-f
RewriteRule (.*?).php/(.*?)/(.*?)/(.*?)/(.*?) $1.php?$2=$3&$4=$5 [L,QSA]
我得到的错误是“没有指定输入”
cgi.fix_pathinfo = 1